From fe2d19be6a1a3a2c7e409563995bd3c2e4552892 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Fri, 21 Mar 2025 12:04:43 +0100 Subject: [PATCH] GNU CI: fix the intermittement management --- util/compare_test_results.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/util/compare_test_results.py b/util/compare_test_results.py index bfacb0dba..930ae213d 100644 --- a/util/compare_test_results.py +++ b/util/compare_test_results.py @@ -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