We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 271c5a3 commit b363acdCopy full SHA for b363acd
codeflash/optimization/optimizer.py
@@ -283,6 +283,12 @@ def run(self) -> None:
283
return
284
285
function_to_tests, _ = self.discover_tests(file_to_funcs_to_optimize)
286
+ # --- TEMPORARY: Early exit after test discovery to avoid full optimization run ---
287
+ # This is intentionally hard-coded (no CLI flag) per request.
288
+ console.rule()
289
+ logger.info("Forced early exit after test discovery (temporary). Skipping optimization phase.")
290
+ return
291
+ # -------------------------------------------------------------------------------
292
if self.args.all:
293
self.functions_checkpoint = CodeflashRunCheckpoint(self.args.module_root)
294
0 commit comments