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 4a24f2c commit 9de664bCopy full SHA for 9de664b
codeflash/optimization/optimizer.py
@@ -127,10 +127,11 @@ def run(self) -> None:
127
logger.info("Information on existing benchmarks will not be available for this run.")
128
finally:
129
# Restore original source code
130
+ trace_file.unlink()
131
+ shutil.rmtree(self.replay_tests_dir, ignore_errors=True)
132
for file in file_path_to_source_code:
133
with file.open("w", encoding="utf8") as f:
134
f.write(file_path_to_source_code[file])
-
135
optimizations_found: int = 0
136
function_iterator_count: int = 0
137
if self.args.test_framework == "pytest":
0 commit comments