Skip to content

Commit df06e34

Browse files
committed
tests/run-bench-tests: Process tests in alphabetical order.
1 parent 83e99f8 commit df06e34

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/run-bench-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def run_tests(pyb, test_dict):
2222
test_count = 0
2323
testcase_count = 0
2424

25-
for base_test, tests in test_dict.items():
25+
for base_test, tests in sorted(test_dict.items()):
2626
print(base_test + ":")
2727
for test_file in tests:
2828

0 commit comments

Comments
 (0)