Skip to content

Commit f6b281a

Browse files
authored
Merge pull request #155 from GBillotey/ktol
Skipping test_db on Windows for now
2 parents aed6071 + 38d836c commit f6b281a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/test_db.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def setUpClass(cls):
118118
)
119119

120120

121-
# @test_config.no_stdout
121+
@test_config.no_stdout
122122
@unittest.skipIf(sys.platform.startswith("win"), "Fails on windows")
123123
def test_db_color_basic(self):
124124
# Fails under windows with
@@ -188,7 +188,8 @@ def plotter_modifier(plotter, time):
188188
self.check_image(ref_file, out_file)
189189

190190

191-
# @test_config.no_stdout
191+
@test_config.no_stdout
192+
@unittest.skipIf(sys.platform.startswith("win"), "Fails on windows")
192193
def test_db_overlay1(self):
193194
""" Testing a complex multilayered plot (with alpha compositing) from a
194195
saved database

0 commit comments

Comments
 (0)