@@ -74,7 +74,7 @@ def run_behavioral_tests(
7474
7575 pytest_test_env = test_env .copy ()
7676 pytest_test_env ["PYTEST_PLUGINS" ] = (
77- "codeflash.verification.pytest_plugin,codeflash.benchmarking.plugin.custom_plugin "
77+ "codeflash.verification.pytest_plugin"
7878 )
7979
8080 if enable_coverage :
@@ -194,7 +194,7 @@ def run_line_profile_tests(
194194 result_args = [f"--junitxml={ result_file_path .as_posix ()} " , "-o" , "junit_logging=all" ]
195195 pytest_test_env = test_env .copy ()
196196 pytest_test_env ["PYTEST_PLUGINS" ] = (
197- "codeflash.verification.pytest_plugin,codeflash.benchmarking.plugin.custom_plugin "
197+ "codeflash.verification.pytest_plugin,codeflash.benchmarking.plugin"
198198 )
199199 blocklist_args = [f"-p no:{ plugin } " for plugin in BENCHMARKING_BLOCKLISTED_PLUGINS ]
200200 pytest_test_env ["LINE_PROFILE" ] = "1"
@@ -257,7 +257,7 @@ def run_benchmarking_tests(
257257 result_args = [f"--junitxml={ result_file_path .as_posix ()} " , "-o" , "junit_logging=all" ]
258258 pytest_test_env = test_env .copy ()
259259 pytest_test_env ["PYTEST_PLUGINS" ] = (
260- "codeflash.verification.pytest_plugin,codeflash.benchmarking.plugin.custom_plugin "
260+ "codeflash.verification.pytest_plugin,codeflash.benchmarking.plugin"
261261 )
262262 blocklist_args = [f"-p no:{ plugin } " for plugin in BENCHMARKING_BLOCKLISTED_PLUGINS ]
263263 results = execute_test_subprocess (
0 commit comments