Skip to content

Commit

Permalink
Merge pull request #155 from GBillotey/ktol
Browse files Browse the repository at this point in the history
Skipping test_db on Windows for now
  • Loading branch information
GBillotey authored Nov 5, 2023
2 parents aed6071 + 38d836c commit f6b281a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def setUpClass(cls):
)


# @test_config.no_stdout
@test_config.no_stdout
@unittest.skipIf(sys.platform.startswith("win"), "Fails on windows")
def test_db_color_basic(self):
# Fails under windows with
Expand Down Expand Up @@ -188,7 +188,8 @@ def plotter_modifier(plotter, time):
self.check_image(ref_file, out_file)


# @test_config.no_stdout
@test_config.no_stdout
@unittest.skipIf(sys.platform.startswith("win"), "Fails on windows")
def test_db_overlay1(self):
""" Testing a complex multilayered plot (with alpha compositing) from a
saved database
Expand Down

0 comments on commit f6b281a

Please sign in to comment.