Skip to content

Commit baf5452

Browse files
Add shell
1 parent 1919558 commit baf5452

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/actions/run-playwright-tests/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@ runs:
99
with:
1010
python-version: '3.13'
1111
- name: Install dependencies
12+
shell: bash
1213
run: |
1314
python -m pip install --upgrade pip
1415
pip install -r requirements.txt
1516
- name: Ensure browsers are installed
17+
shell: bash
1618
run: python -m playwright install --with-deps
1719
- name: Run util tests
20+
shell: bash
1821
run: pytest -m "utils" --ignore=tests/
1922
- uses: actions/upload-artifact@v4
2023
if: ${{ !cancelled() }}
@@ -23,6 +26,7 @@ runs:
2326
path: test-results/
2427
retention-days: 3
2528
- name: Run example tests
29+
shell: bash
2630
run: pytest --ignore=tests_utils/
2731
- uses: actions/upload-artifact@v4
2832
if: ${{ !cancelled() }}

0 commit comments

Comments
 (0)