Skip to content

Commit f1cb96a

Browse files
authored
Merge pull request #381 from faster-cpython/stable-ordering
Fix #377: Provide a stable ordering for results
2 parents 88a4f43 + a0048ac commit f1cb96a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: bench_runner/result.py

+2
Original file line numberDiff line numberDiff line change
@@ -901,6 +901,8 @@ def load_all_results(
901901
key=lambda x: (
902902
x.parsed_version,
903903
x.commit_datetime,
904+
tuple(x.flags),
905+
x.filename, # Just to produce a stable ordering
904906
),
905907
reverse=True,
906908
)

0 commit comments

Comments
 (0)