From b2c68487c54f2813abc2827891c56898ac747f0d Mon Sep 17 00:00:00 2001
From: lb584 <lb584@cam.ac.uk>
Date: Tue, 18 Jul 2023 11:17:56 +0100
Subject: [PATCH] investigating failing env suit full fat failure

---
 .../partial/integration_test_utils.py         | 24 +++++++++----------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/tests/integration/partial/integration_test_utils.py b/tests/integration/partial/integration_test_utils.py
index b950184..43f05a5 100644
--- a/tests/integration/partial/integration_test_utils.py
+++ b/tests/integration/partial/integration_test_utils.py
@@ -202,19 +202,19 @@ class IntegrationTestUtils:
 
         import Processor
         reload(Processor)  # reload the class to reset all variables
-        # from Processor import run_Process, set_log_level
-        #
-        # args_dict: dict = {}
-        #
+        from Processor import run_Process, set_log_level
+
+        args_dict: dict = {}
+
         # note, possible to override these values in the kwargs loop below
-        # args_dict['live'] = False
-        # args_dict['noupload'] = True
-        # args_dict['start_date'] = start_date
-        # args_dict['component'] = component
-        # args_dict['config_paths'] = [IntegrationTestUtils.TEMP_CONFIG_FILE_NAME]
-        # args_dict['log_level'] = 'info'
-        # args_dict['clearup'] = True
-        #
+        args_dict['live'] = False
+        args_dict['noupload'] = True
+        args_dict['start_date'] = start_date
+        args_dict['component'] = component
+        args_dict['config_paths'] = [IntegrationTestUtils.TEMP_CONFIG_FILE_NAME]
+        args_dict['log_level'] = 'info'
+        args_dict['clearup'] = True
+
         # for key, value in kwargs.items():
         #     args_dict[key] = value
         #
-- 
GitLab