We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feecc86 commit 034ce38Copy full SHA for 034ce38
1 file changed
eval_protocol/cli_commands/local_test.py
@@ -39,7 +39,7 @@ def _run_pytest_host(pytest_target: str) -> int:
39
"""Run pytest against a target on the host and return its exit code."""
40
print(f"Running locally: pytest {pytest_target} -vs")
41
# 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"]
+ cmd = [sys.executable, "-m", "pytest", "--ep-success-threshold", "0.001", pytest_target, "-vs"]
43
proc = subprocess.run(cmd)
44
return proc.returncode
45
0 commit comments