Skip to content

Commit

Permalink
Move imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ArneVoss committed Jan 11, 2024
1 parent 6d62598 commit 80e88a0
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions tests/test_gui.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
import logging

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


class TestLoadsCompare():

def test_gui(self):
from loadscompare import compare
logging.info('Testing Loads Compare')
c = compare.Compare()
c.test()
Expand All @@ -18,6 +13,7 @@ def test_gui(self):
class TestModelViewer():

def test_gui(self):
from modelviewer import view
logging.info('Testing Model Viewer')
m = view.Modelviewer()
m.test()

0 comments on commit 80e88a0

Please sign in to comment.