Run benchmarks in alphabetical order (#1178)

Co-authored-by: Roman Yurchak <rth.yurchak@gmail.com>
This commit is contained in:
Dexter Chua 2021-01-30 20:58:34 +08:00 committed by GitHub
parent d548644ad0
commit 4de39e3617
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ def parse_numpy_benchmark(filename):
def get_numpy_benchmarks():
root = Path(__file__).resolve().parent / "benchmarks"
for filename in root.iterdir():
for filename in sorted(root.iterdir()):
name = filename.stem
if name in SKIP:
continue