We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e9f4e0 commit af13ef6Copy full SHA for af13ef6
1 file changed
bench_runner/plot.py
@@ -571,7 +571,8 @@ def benchmark_longitudinal_plot(
571
timing = comparison.get_timing_diff()
572
573
for name, _diff, mean in timing:
574
- if mean > 0.01:
+ # Don't include insignificant results
575
+ if mean > 0.0:
576
value = [r.commit_date, mean, r.cpython_hash]
577
if r.filename.name not in cache:
578
cache[r.filename.name] = {}
0 commit comments