Skip to content

Commit a710578

Browse files
committed
small fix to print statement
1 parent 4ee6b27 commit a710578

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

eval_protocol/cli_commands/local_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ def _build_docker_image(dockerfile_path: str, image_tag: str, build_extras: List
3737

3838
def _run_pytest_host(pytest_target: str) -> int:
3939
"""Run pytest against a target on the host and return its exit code."""
40-
print(f"Running locally: pytest {pytest_target} -vs")
4140
# Always enforce a small success threshold for evaluation_test-based suites so that runs with all-zero scores fail.
4241
cmd = [sys.executable, "-m", "pytest", "--ep-success-threshold", "0.001", pytest_target, "-vs"]
42+
# Print the exact command being executed for easier debugging.
43+
print("Running locally:", " ".join(cmd))
4344
proc = subprocess.run(cmd)
4445
return proc.returncode
4546

0 commit comments

Comments
 (0)