Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion util/compare_test_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ def flatten_test_results(results):
flattened = {}
for util, tests in results.items():
for test_name, status in tests.items():
test_path = f"{util}/{test_name}"
# Build the full test path
test_path = f"tests/{util}/{test_name}"
# Remove the .log extension
test_path = test_path.replace(".log", "")
flattened[test_path] = status
return flattened

Expand Down
Loading