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"):