FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit f7113a18 authored by L. Bower's avatar L. Bower
Browse files

adding some missing import statements

parent 9f3c984e
No related branches found
No related tags found
No related merge requests found
...@@ -28,12 +28,15 @@ class TestEpi(unittest.TestCase): ...@@ -28,12 +28,15 @@ class TestEpi(unittest.TestCase):
default_config = IntegrationTestUtils.DEFAULT_CONFIG_FILE_PATH default_config = IntegrationTestUtils.DEFAULT_CONFIG_FILE_PATH
default_config_dict: dict = IntegrationTestUtils.load_json_file(default_config) default_config_dict: dict = IntegrationTestUtils.load_json_file(default_config)
run_dict: dict = copy.deepcopy(default_config_dict) run_dict: dict = copy.deepcopy(default_config_dict)
TestEpi.TEST_OUT_PATH = run_dict['WorkspacePathout'] + prefix + os.sep TestEpi.TEST_OUT_PATH = IntegrationTestUtils.TEST_WORKSPACE_PATH + prefix + os.sep
run_dict['WorkspacePathout'] = TestEpi.TEST_OUT_PATH run_dict['WorkspacePathout'] = TestEpi.TEST_OUT_PATH
run_dict['WorkspacePath'] = TestEpi.TEST_OUT_PATH run_dict['WorkspacePath'] = TestEpi.TEST_OUT_PATH
run_dict['ServerName'] = '' # nothing, as local machine run_dict['ServerName'] = '' # nothing, as local machine
IntegrationTestUtils.write_json_file(run_dict, IntegrationTestUtils.TEMP_CONFIG_FILE_NAME) os.makedirs(TestEpi.TEST_OUT_PATH, exist_ok = True)
IntegrationTestUtils.TEMP_CONFIG_FILE_NAME = TestEpi.TEST_OUT_PATH + "temp_config.json"
name = IntegrationTestUtils.TEMP_CONFIG_FILE_NAME
IntegrationTestUtils.write_json_file(run_dict, name)
@staticmethod @staticmethod
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment