Skip to content

Commit 77b1c6a

Browse files
committed
Update test_runner.py
1 parent cde23d0 commit 77b1c6a

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
@@ -87,12 +87,12 @@ def run_behavioral_tests(
8787
else:
8888
coverage_cmd.extend(shlex.split(pytest_cmd, posix=IS_POSIX)[1:])
8989

90-
coverage_cmd = f"{SAFE_SYS_EXECUTABLE} -m coverage run --rcfile={coveragercfile.as_posix()} -m"
9190
results = execute_test_subprocess(
9291
coverage_cmd + common_pytest_args + result_args + test_files, cwd=cwd, env=pytest_test_env, timeout=600
9392
)
9493
logger.debug(
95-
f"""Result return code: {results.returncode}, {"Result stderr:" + str(results.stderr) if results.stderr else ""}"""
94+
f"Result return code: {results.returncode}, "
95+
f"{'Result stderr:' + str(results.stderr) if results.stderr else ''}"
9696
)
9797
else:
9898
results = execute_test_subprocess(

0 commit comments

Comments
 (0)