Skip to content

Commit 3373197

Browse files
committed
precommit fix
1 parent f030f41 commit 3373197

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codeflash/verification/test_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)