Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
python 3.13.2
uv 0.6.6
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ def test_metrics_within_range():
)
results.append(test_runner.run_once(run))

failure_threshold = 0.9
assert generations <= 1 or is_within_expected(
failure_threshold = 0.97
assert is_within_expected(
failure_threshold, sum(not result for result in results), generations
), f"Expected {failure_threshold} to be within the confidence interval of the success rate"

Expand Down