Skip to content

Commit 267030c

Browse files
committed
cleanup
1 parent 3c8533b commit 267030c

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

codeflash/tracer.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,6 @@ def main(args: Namespace | None = None) -> ArgumentParser:
120120
result_pickle_file_path = get_run_tmp_file(Path(f"tracer_results_file_{i}.pkl"))
121121
result_pickle_file_paths.append(result_pickle_file_path)
122122
args_dict["result_pickle_file_path"] = str(result_pickle_file_path)
123-
outpath = parsed_args.outfile
124-
outpath = outpath.parent / f"{outpath.stem}_{i}{outpath.suffix}"
125-
args_dict["output"] = str(outpath)
126123
updated_sys_argv = []
127124
for elem in sys.argv:
128125
if elem in test_paths_set:
@@ -164,7 +161,6 @@ def main(args: Namespace | None = None) -> ArgumentParser:
164161
else:
165162
result_pickle_file_path = get_run_tmp_file(Path("tracer_results_file.pkl"))
166163
args_dict["result_pickle_file_path"] = str(result_pickle_file_path)
167-
args_dict["output"] = str(parsed_args.outfile)
168164
args_dict["command"] = " ".join(sys.argv)
169165

170166
env = os.environ.copy()

codeflash/tracing/tracing_new_process.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -859,7 +859,6 @@ def runctx(self, cmd: str, global_vars: dict[str, Any], local_vars: dict[str, An
859859
args_dict["config"]["tests_root"] = Path(args_dict["config"]["tests_root"])
860860
tracer = Tracer(
861861
config=args_dict["config"],
862-
output=Path(args_dict["output"]),
863862
functions=args_dict["functions"],
864863
max_function_count=args_dict["max_function_count"],
865864
timeout=args_dict["timeout"],

0 commit comments

Comments
 (0)