mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 11:07:44 +00:00
Merge pull request #7517 from sylvestre/fix-intermittent-detection
GNU CI: fix the intermittement management
This commit is contained in:
commit
a64fce8286
1 changed files with 4 additions and 1 deletions
|
@ -24,7 +24,10 @@ def flatten_test_results(results):
|
||||||
flattened = {}
|
flattened = {}
|
||||||
for util, tests in results.items():
|
for util, tests in results.items():
|
||||||
for test_name, status in tests.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
|
flattened[test_path] = status
|
||||||
return flattened
|
return flattened
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue