mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-23 13:54:59 +00:00
show remaining
This commit is contained in:
parent
58690da8b4
commit
f836a4b760
1 changed files with 3 additions and 1 deletions
|
@ -206,7 +206,9 @@ def summarize_results(dirname, all_results, total_tests=None):
|
||||||
|
|
||||||
console.print()
|
console.print()
|
||||||
avg_duration = duration / completed_tests
|
avg_duration = duration / completed_tests
|
||||||
console.print(f"duration: {avg_duration:.1f} sec/test-case")
|
remaining = (total_tests - completed_tests) * avg_duration
|
||||||
|
|
||||||
|
console.print(f"duration: {avg_duration:.1f} sec/test-case, {remaining:.0f} sec remaining")
|
||||||
|
|
||||||
avg_cost = total_cost / completed_tests
|
avg_cost = total_cost / completed_tests
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue