diff --git a/test/run_integration_tests.py b/test/run_integration_tests.py index 0360b12f..f35af4eb 100644 --- a/test/run_integration_tests.py +++ b/test/run_integration_tests.py @@ -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, diff --git a/test/run_system_tests.py b/test/run_system_tests.py index fbbee335..f4a71bd1 100644 --- a/test/run_system_tests.py +++ b/test/run_system_tests.py @@ -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