From 666f07fe1e0124ce530c3db76e8a268f9d62075c Mon Sep 17 00:00:00 2001 From: Igor Sirotin Date: Thu, 29 Aug 2024 11:48:32 +0100 Subject: [PATCH] fix_: nightly tests report (#5779) --- _assets/scripts/test_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_assets/scripts/test_stats.py b/_assets/scripts/test_stats.py index abd610ac8..b1d516f95 100755 --- a/_assets/scripts/test_stats.py +++ b/_assets/scripts/test_stats.py @@ -6,7 +6,7 @@ from collections import defaultdict test_stats = defaultdict(lambda: defaultdict(int)) -for file in glob.glob("**/report_*.xml", recursive=True): +for file in glob.glob("report.xml", recursive=True): tree = ET.parse(file) root = tree.getroot() for testcase in root.iter("testcase"):