We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1919558 commit baf5452Copy full SHA for baf5452
.github/actions/run-playwright-tests/action.yml
@@ -9,12 +9,15 @@ runs:
9
with:
10
python-version: '3.13'
11
- name: Install dependencies
12
+ shell: bash
13
run: |
14
python -m pip install --upgrade pip
15
pip install -r requirements.txt
16
- name: Ensure browsers are installed
17
18
run: python -m playwright install --with-deps
19
- name: Run util tests
20
21
run: pytest -m "utils" --ignore=tests/
22
- uses: actions/upload-artifact@v4
23
if: ${{ !cancelled() }}
@@ -23,6 +26,7 @@ runs:
26
path: test-results/
24
27
retention-days: 3
25
28
- name: Run example tests
29
30
run: pytest --ignore=tests_utils/
31
32
0 commit comments