Skip to content

Commit c1f36ac

Browse files
authored
Update test_runner.py
1 parent 3c76a95 commit c1f36ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

codeflash/verification/test_runner.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)