We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f84f80 commit 7c9d649Copy full SHA for 7c9d649
1 file changed
bench_runner/scripts/generate_results.py
@@ -126,7 +126,11 @@ def sort_runner_names(runner_names: Iterable[str]) -> list[str]:
126
def sorter(val):
127
if val is None:
128
return ()
129
- return order.index(val.split()[0]), val
+ try:
130
+ idx = order.index(val.split()[0])
131
+ except ValueError:
132
+ idx = -1
133
+ return idx, val
134
135
return sorted(runner_names, key=sorter)
136
0 commit comments