Closing line simplified to one line (status + result path); tree removed
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
7f3c42d39c
commit
a3269252fd
@ -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' └─ <bench>/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 └─ <bench>/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')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user