Commit 03800e9
fix(tests): widen timing budget in stays_pending / never_quiet fixtures (#43)
Both ``tests/fixtures/test_browser.json`` cases set ``timeout_s: 0.05``
and assert ``evaluate.call_count >= 2``. The 50ms budget passes in
CI's clean Linux container but flakes locally under CPU pressure: the
loop's first iteration uses the whole budget on an interpreter under
load, exits with call_count == 1, fails ``assert 1 >= 2``.
Surfaced — and shipped past — during the v0.8.1 release.py run, which
ran the full 1970-test suite. CI's per-job context made it invisible
for prior releases; release.py's local full-suite run finally exposed
it. Bumping to 0.5 gives 10× headroom, verified across three
concurrent stress runs.
Co-authored-by: Ken Schulz <kwschulz@users.noreply.github.com>
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 12cadd3 commit 03800e9
2 files changed
Lines changed: 6 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
10 | 14 | | |
11 | 15 | | |
12 | 16 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | | - | |
| 52 | + | |
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
| |||
0 commit comments