From 438f7ffc03fe353750cdf72d7039ebf241023e48 Mon Sep 17 00:00:00 2001 From: Igor Sirotin Date: Thu, 29 Aug 2024 01:31:13 +0100 Subject: [PATCH] fix_: nightly tests report --- _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 abd610ac81c..b1d516f95eb 100755 --- a/_assets/scripts/test_stats.py +++ b/_assets/scripts/test_stats.py @@ -6,7 +6,7 @@ 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"):