From 5fddb9c90abc131f4123be83806b1a5da96f78bf Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 29 Jun 2023 14:32:00 -0700 Subject: [PATCH] removed remaining --- benchmark/benchmark.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/benchmark/benchmark.py b/benchmark/benchmark.py index d33c544ac..d26bb55ed 100755 --- a/benchmark/benchmark.py +++ b/benchmark/benchmark.py @@ -221,13 +221,8 @@ def summarize_results(dirname): console.print() avg_duration = duration / completed_tests - remaining_seconds = (total_tests - completed_tests) * avg_duration - remaining_minutes, remaining_seconds = divmod(remaining_seconds, 60) - console.print( - f"duration: {avg_duration:.1f} sec/test-case," - f" {remaining_minutes:2.0f}:{remaining_seconds:02.0f} remaining" - ) + console.print(f"duration: {avg_duration:.1f} sec/test-case") avg_cost = total_cost / completed_tests