Skip to content

Commit

Permalink
Use try-except in GUI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ArneVoss committed Jan 10, 2024
1 parent d68a985 commit 6d62598
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/test_gui.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import logging

from loadscompare import compare
from modelviewer import view
try:
from loadscompare import compare
from modelviewer import view
except:
pass


class TestLoadsCompare():
Expand Down

0 comments on commit 6d62598

Please sign in to comment.