Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/run_integration_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
print('Running tests in develop mode. Appending repository directory to system path.')
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))

from test.integration_tests import test_model
from test.integration_tests import test_solver
#from test.integration_tests import test_mincde
from integration_tests import test_model
from integration_tests import test_solver
#from integration_tests import test_mincde

modules = [
test_model,
Expand Down
2 changes: 1 addition & 1 deletion test/run_system_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
print('Running system tests in develop mode. Appending repository directory to system path.')
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))

from test.system_tests import test_compiler
from system_tests import test_compiler

modules = [
test_compiler
Expand Down