We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7bd90bb + fe2d19b commit a64fce8Copy full SHA for a64fce8
util/compare_test_results.py
@@ -24,7 +24,10 @@ def flatten_test_results(results):
24
flattened = {}
25
for util, tests in results.items():
26
for test_name, status in tests.items():
27
- test_path = f"{util}/{test_name}"
+ # Build the full test path
28
+ test_path = f"tests/{util}/{test_name}"
29
+ # Remove the .log extension
30
+ test_path = test_path.replace(".log", "")
31
flattened[test_path] = status
32
return flattened
33
0 commit comments