From 8632b2735be0b119a7f15550f385b9421aaa0b41 Mon Sep 17 00:00:00 2001 From: sora <2075279110@qq.com> Date: Thu, 10 Sep 2026 11:04:00 +0000 Subject: [PATCH] Drop the overall benches bar from the CLI (per-benchmark result lines already track progress; reporter keeps the capability for API users) Co-Authored-By: Claude --- evalharness/cli.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/evalharness/cli.py b/evalharness/cli.py index 041d2cd..ef60337 100644 --- a/evalharness/cli.py +++ b/evalharness/cli.py @@ -503,9 +503,7 @@ def _cmd_eval_run(args) -> int: _shared_reporter = RichTerminalProgress(console=console) _shared_reporter.owned_externally = True progress_reporter = _shared_reporter - if total_runs > 1: - progress_reporter.set_overall( - total_runs, i, f'benches ยท {i + 1}/{total_runs} {name}') + def status_callback(msg, _idx=i + 1, _name=name, _reporter=progress_reporter,