You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f"Discovered {num_discovered_tests} existing unit tests and {num_discovered_replay_tests} replay tests in {(time.time() -start_time):.1f}s at {self.test_cfg.tests_root}"
249
-
)
241
+
withprogress_bar("Scanning project for tests to guide optimization."):
f"Discovered {num_discovered_tests} existing unit tests and {num_discovered_replay_tests} replay tests in {(time.time() -start_time):.1f}s at {self.test_cfg.tests_root}"
Copy file name to clipboardExpand all lines: codeflash/result/explanation.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ def speedup_x(self) -> str:
41
41
defspeedup_pct(self) ->str:
42
42
returnf"{self.speedup*100:,.0f}%"
43
43
44
-
defto_console_string(self) ->str:
44
+
def__str__(self) ->str:
45
45
# TODO: After doing the best optimization, remove the test cases that errored on the new code, because they might be failing because of syntax errors and such.
46
46
# TODO: Sometimes the explanation says something similar to "This is the code that was optimized", remove such parts
0 commit comments