Skip to content
Merged
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
4 changes: 4 additions & 0 deletions tests/unit/browsers/test_browser_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ async def test_new_page_with_invalid_plugin() -> None:
await browser_pool.new_page(browser_plugin=plugin_2)


@pytest.mark.flaky(
reruns=3,
reason='Test is flaky on Windows when Playwright hits net::ERR_NO_BUFFER_SPACE under xdist load.',
)
async def test_resource_management(server_url: URL) -> None:
playwright_plugin = PlaywrightBrowserPlugin(browser_type='chromium')

Expand Down
Loading