Skip to content

Commit 034ce38

Browse files
committed
.001
1 parent feecc86 commit 034ce38

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

eval_protocol/cli_commands/local_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def _run_pytest_host(pytest_target: str) -> int:
3939
"""Run pytest against a target on the host and return its exit code."""
4040
print(f"Running locally: pytest {pytest_target} -vs")
4141
# Always enforce a small success threshold for evaluation_test-based suites so that runs with all-zero scores fail.
42-
cmd = [sys.executable, "-m", "pytest", "--ep-success-threshold", "0.01", pytest_target, "-vs"]
42+
cmd = [sys.executable, "-m", "pytest", "--ep-success-threshold", "0.001", pytest_target, "-vs"]
4343
proc = subprocess.run(cmd)
4444
return proc.returncode
4545

0 commit comments

Comments
 (0)