fix_: nightly tests report (#5779)

This commit is contained in:
Igor Sirotin 2024-08-29 11:48:32 +01:00 committed by GitHub
parent c1d94e214a
commit 666f07fe1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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