Skip to content

Commit 7c6a7ff

Browse files
Fix tests when run in Windows
1 parent 245d80b commit 7c6a7ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

utest/editor/test_z_kweditor_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def test_disable(self):
322322
"""
323323

324324
# This was failing at AppVeyor
325-
@pytest.mark.skipif(IS_WINDOWS, reason="On Windows causes: Windows fatal exception: access violation")
325+
@pytest.mark.skipif(sys.platform=='win32', reason="On Windows causes: Windows fatal exception: access violation")
326326
def test_show(self):
327327
# self.setup_data()
328328
# self.frame.Show()

0 commit comments

Comments
 (0)