File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 90
90
pip install -r local-requirements.txt
91
91
pip install -e .
92
92
python setup.py bdist_wheel
93
- python -m playwright install --with-deps
93
+ python -m playwright install --with-deps ${{ matrix.browser }}
94
94
- name : Common Tests
95
95
run : pytest tests/common --browser=${{ matrix.browser }} --timeout 90
96
96
- name : Test Reference count
Original file line number Diff line number Diff line change 23
23
24
24
25
25
@pytest .mark .asyncio
26
- async def test_memory_objects (server : Server ) -> None :
26
+ async def test_memory_objects (server : Server , browser_name : str ) -> None :
27
27
async with async_playwright () as p :
28
- browser = await p . chromium .launch ()
28
+ browser = await p [ browser_name ] .launch ()
29
29
page = await browser .new_page ()
30
30
await page .goto (server .EMPTY_PAGE )
31
31
You can’t perform that action at this time.
0 commit comments