Skip to content

Commit d8db20b

Browse files
authored
Playwright install with deps (#338)
* Playwright install: add --with-deps * Set OS versions explicitly
1 parent 6a11ef4 commit d8db20b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
timeout-minutes: 20
99
strategy:
1010
fail-fast: false
11+
os: ubuntu-22.04
1112
matrix:
12-
os: [ubuntu-latest]
1313
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1414
include:
15-
- os: macos-latest
15+
- os: macos-14
1616
python-version: "3.12"
17-
- os: windows-latest
17+
- os: windows-2022
1818
python-version: "3.12"
1919

2020
steps:

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ allowlist_externals =
1212
npm
1313
npx
1414
commands =
15-
playwright install
15+
playwright install --with-deps
1616
npm install [email protected]
1717
npx playwright install chromium
1818
py.test -vv --reactor=asyncio \
@@ -29,7 +29,7 @@ basepython = python3
2929
[testenv:py-twisted]
3030
basepython = python3
3131
commands =
32-
playwright install
32+
playwright install --with-deps
3333
py.test -vv --reactor=asyncio \
3434
--cov-report=term-missing \
3535
--cov-report=xml:coverage-twisted.xml \

0 commit comments

Comments
 (0)