Skip to content

Commit

Permalink
add average test durations script
Browse files Browse the repository at this point in the history
  • Loading branch information
naik-aakash committed Nov 21, 2024
1 parent 6c080eb commit 85153b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/average_test_durations.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def main():

# Merge and update with consolidated durations
updated_durations = {}
for test in collected_tests:
for test, duration in collected_tests.items():
# Update average test durations and exclude test which not exists (can happen on renaming or removing tests)
if test in consolidated_durations:
updated_durations[test] = consolidated_durations[test]
Expand Down

0 comments on commit 85153b5

Please sign in to comment.