File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ def run_line_profile_tests(
191191 result_file_path = get_run_tmp_file (Path ("pytest_results.xml" ))
192192 result_args = [f"--junitxml={ result_file_path .as_posix ()} " , "-o" , "junit_logging=all" ]
193193 pytest_test_env = test_env .copy ()
194- pytest_test_env ["PYTEST_PLUGINS" ] = "codeflash.verification.pytest_plugin,codeflash.benchmarking.plugin "
194+ pytest_test_env ["PYTEST_PLUGINS" ] = "codeflash.verification.pytest_plugin"
195195 blocklist_args = [f"-p no:{ plugin } " for plugin in BENCHMARKING_BLOCKLISTED_PLUGINS ]
196196 pytest_test_env ["LINE_PROFILE" ] = "1"
197197 results = execute_test_subprocess (
@@ -252,7 +252,7 @@ def run_benchmarking_tests(
252252 result_file_path = get_run_tmp_file (Path ("pytest_results.xml" ))
253253 result_args = [f"--junitxml={ result_file_path .as_posix ()} " , "-o" , "junit_logging=all" ]
254254 pytest_test_env = test_env .copy ()
255- pytest_test_env ["PYTEST_PLUGINS" ] = "codeflash.verification.pytest_plugin,codeflash.benchmarking.plugin "
255+ pytest_test_env ["PYTEST_PLUGINS" ] = "codeflash.verification.pytest_plugin"
256256 blocklist_args = [f"-p no:{ plugin } " for plugin in BENCHMARKING_BLOCKLISTED_PLUGINS ]
257257 results = execute_test_subprocess (
258258 pytest_cmd_list + pytest_args + blocklist_args + result_args + test_files ,
You can’t perform that action at this time.
0 commit comments