We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d280b93 commit b116502Copy full SHA for b116502
2 files changed
.github/workflows/ci.yml
@@ -90,7 +90,7 @@ jobs:
90
pip install -r local-requirements.txt
91
pip install -e .
92
python setup.py bdist_wheel
93
- python -m playwright install --with-deps
+ python -m playwright install --with-deps ${{ matrix.browser }}
94
- name: Common Tests
95
run: pytest tests/common --browser=${{ matrix.browser }} --timeout 90
96
- name: Test Reference count
tests/test_reference_count_async.py
@@ -23,9 +23,9 @@
23
24
25
@pytest.mark.asyncio
26
-async def test_memory_objects(server: Server) -> None:
+async def test_memory_objects(server: Server, browser_name: str) -> None:
27
async with async_playwright() as p:
28
- browser = await p.chromium.launch()
+ browser = await p[browser_name].launch()
29
page = await browser.new_page()
30
await page.goto(server.EMPTY_PAGE)
31
0 commit comments