Skip to content

Commit

Permalink
Merge pull request airspeed-velocity#1351 from ianthomas23/1028-parti…
Browse files Browse the repository at this point in the history
…ally-skipped

Handle partially-skipped benchmarks
  • Loading branch information
HaoZeke authored Jan 7, 2024
2 parents 8620a7c + 4bbe67a commit 8caf751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asv/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ def format_benchmark_result(results, benchmark):
if failure_count == 0:
info = "ok"

display_result = [(v, get_err(v, s) if s is not None else None)
display_result = [(v, get_err(v, s) if s else None)
for v, s in zip(result, stats)]
display = _format_benchmark_result(display_result, benchmark)
display = "\n".join(display).strip()
Expand Down

0 comments on commit 8caf751

Please sign in to comment.