We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81eb8e5 commit 8463861Copy full SHA for 8463861
.github/csv_min.py
@@ -6,7 +6,8 @@
6
min_val = defaultdict(lambda: sys.maxsize)
7
min_impl = {}
8
for row in reader:
9
- if int(row['nanoseconds']) < min_val[row['name']]:
+ if int(row['nanoseconds']) < min_val[row['name']] \
10
+ and row['exit_status'] == '0':
11
min_val[row['name']] = int(row['nanoseconds'])
12
min_impl[row['name']] = row['implementation']
13
0 commit comments