Skip to content

Commit

Permalink
Tweak the test report filename regex to accept dash
Browse files Browse the repository at this point in the history
  • Loading branch information
huydhn committed May 10, 2024
1 parent 434c083 commit 6bd0f3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/stats/upload_dynamo_perf_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test-reports",
]
ARTIFACT_REGEX = re.compile(
r"test-reports-test-(?P<name>\w+)-\d+-\d+-(?P<runner>[\w\.]+)_(?P<job>\d+).zip"
r"test-reports-test-(?P<name>[\w\-]+)-\d+-\d+-(?P<runner>[\w\.]+)_(?P<job>\d+).zip"
)


Expand Down

0 comments on commit 6bd0f3e

Please sign in to comment.