support casing

This commit is contained in:
Adam Wilson
2025-08-18 20:48:43 -06:00
parent fad7035b32
commit 28a962facd
752 changed files with 2 additions and 2 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_{str(test_id).lower()}_logs_{timestamp}.json"
self.log_file_path = str(f"./tests/logs/test_{test_id}/{str(model_id.value).replace("/", "_")}/{start}_{end}/test_{str(test_id).lower()}_logs_{timestamp}.json").lower()
self._ensure_log_file_exists()
def _ensure_log_file_exists(self):
+1 -1
View File
@@ -28,7 +28,7 @@ for i in {1..5}; do
for model in "${models[@]}"; do
# Replace / with _ and convert to lowercase for directory name
dir_name="${model//\//_}"
dir_name="${dir_name,,}" # Convert to lowercase
dir_name="${dir_name}" # Convert to lowercase
# Create the full directory path
full_path="logs/test_${i}/${dir_name}/${range}"

Some files were not shown because too many files have changed in this diff Show More