From a3269252fd45780052659d19b49bd12a4e397461 Mon Sep 17 00:00:00 2001 From: sora <2075279110@qq.com> Date: Thu, 10 Sep 2026 10:42:04 +0000 Subject: [PATCH] Closing line simplified to one line (status + result path); tree removed Co-Authored-By: Claude --- evalharness/cli.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/evalharness/cli.py b/evalharness/cli.py index 6d31a38..f259547 100644 --- a/evalharness/cli.py +++ b/evalharness/cli.py @@ -630,15 +630,10 @@ def _cmd_eval_run(args) -> int: mark = '[green]✓[/green]' if ok_n == len(rows) else '[yellow]◐[/yellow]' if console is not None: console.print( - f'\n{mark} [bold]运行结束[/bold] · {ok_n}/{len(rows)} benchmarks ok\n' - f' 结果 {ap}\n' - f' ├─ summary.xlsx (excel 打开总表)\n' - f' ├─ summary.csv\n' - f' └─ /report.jsonl + detail.md (每 benchmark 一个目录)') + f'\n{mark} [bold]运行结束[/bold] · {ok_n}/{len(rows)} benchmarks ok' + f' · 结果 {ap}') else: - print(f'\n运行结束 · {ok_n}/{len(rows)} benchmarks ok\n' - f' 结果 {ap}\n' - f' ├─ summary.xlsx\n └─ /report.jsonl + detail.md') + print(f'\n运行结束 · {ok_n}/{len(rows)} benchmarks ok · 结果 {ap}') elif rows and rows[0]['ok'] and args.out: _notice('运行结束 · 结果已保存', args.out) print(f'{ok_n}/{len(rows)} benchmarks ok')