Skip to content

Commit

Permalink
Ignored windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs committed Feb 2, 2022
1 parent 076a703 commit f9e3a42
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_whiteboxgui.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@


import unittest
import platform

from whiteboxgui import whiteboxgui

Expand All @@ -13,7 +14,8 @@ class TestWhiteboxgui(unittest.TestCase):

def setUp(self):
"""Set up test fixtures, if any."""
whiteboxgui.show()
if platform.system() != 'Windows':
whiteboxgui.show()

def tearDown(self):
"""Tear down test fixtures, if any."""
Expand Down

0 comments on commit f9e3a42

Please sign in to comment.