Skip to content

Commit af13ef6

Browse files
committed
Be tighter about excluding insignificant results
1 parent 4e9f4e0 commit af13ef6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

bench_runner/plot.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,8 @@ def benchmark_longitudinal_plot(
571571
timing = comparison.get_timing_diff()
572572

573573
for name, _diff, mean in timing:
574-
if mean > 0.01:
574+
# Don't include insignificant results
575+
if mean > 0.0:
575576
value = [r.commit_date, mean, r.cpython_hash]
576577
if r.filename.name not in cache:
577578
cache[r.filename.name] = {}

0 commit comments

Comments
 (0)