base classes

This commit is contained in:
Adam Wilson
2025-08-18 20:24:36 -06:00
parent a636b7fbf7
commit 42e4962063
16 changed files with 167 additions and 131 deletions
@@ -22,7 +22,7 @@ class TestRunLoggingService(AbstractTestRunLoggingService):
):
self._lock = threading.Lock()
timestamp = calendar.timegm(time.gmtime())
self.log_file_path = f"./tests/logs/test_{test_id}/{str(model_id.value).replace("/", "_")}/{start}_{end}/test_{test_id}_logs_{timestamp}.json"
self.log_file_path = f"./tests/logs/test_{test_id}/{str(model_id.value).replace("/", "_")}/{start}_{end}/test_{str(test_id).lower()}_logs_{timestamp}.json"
self._ensure_log_file_exists()
def _ensure_log_file_exists(self):