From 00c3bfec29cf5ffe2d6f78cec6bc6946610bdbcf Mon Sep 17 00:00:00 2001 From: Martin Yeo <40734014+trexfeathers@users.noreply.github.com> Date: Thu, 28 Nov 2024 18:03:52 +0000 Subject: [PATCH] Reduce default number of benchmark rounds. (#6234) --- benchmarks/bm_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/bm_runner.py b/benchmarks/bm_runner.py index afc08ff6fa..f7204db25f 100644 --- a/benchmarks/bm_runner.py +++ b/benchmarks/bm_runner.py @@ -27,7 +27,7 @@ GH_REPORT_DIR = ROOT_DIR.joinpath(".github", "workflows", "benchmark_reports") # Common ASV arguments for all run_types except `custom`. -ASV_HARNESS = "run {posargs} --attribute rounds=4 --interleave-rounds --show-stderr" +ASV_HARNESS = "run {posargs} --attribute rounds=3 --interleave-rounds --show-stderr" def echo(echo_string: str):