Commit 12ef1cb
authored
test: Bump goto timeout in flaky
## Summary
- `tests/unit/browsers/test_browser_pool.py::test_resource_management`
has been failing intermittently on `windows-latest` + Python 3.14 with
`playwright._impl._errors.TimeoutError: Page.goto: Timeout 30000ms
exceeded`.
- Root cause: Playwright's default 30s navigation timeout is too short
for a cold Windows + 3.14 CI runner; the local test server is fine, but
Chromium's page load (waiting for `load`) overruns the default budget.
- Fix: Pass an explicit `timeout=60_000` to the single `page.goto(...)`
call in this test.
Failure run for reference:
https://github.com/apify/crawlee-python/actions/runs/26436864359/job/77821574408test_resource_management (#1916)1 parent 5b0ca17 commit 12ef1cb
1 file changed
Lines changed: 2 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
143 | 143 | | |
144 | 144 | | |
145 | 145 | | |
146 | | - | |
| 146 | + | |
| 147 | + | |
147 | 148 | | |
148 | 149 | | |
149 | 150 | | |
| |||
0 commit comments