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 8f27e23 commit 9aad9d7Copy full SHA for 9aad9d7
.github/workflows/app-tests.yaml
@@ -53,6 +53,7 @@ jobs:
53
- name: Install dependencies
54
run: |
55
python -m pip install -r requirements-dev.txt
56
+ playwright install chromium --with-deps
57
- name: Install app as editable app
58
59
python -m pip install -e src/backend
@@ -76,10 +77,7 @@ jobs:
76
77
run: python3 -m pytest -s -vv --cov --cov-fail-under=85
78
- name: Run E2E tests with Playwright
79
id: e2e
- if: runner.os != 'Windows'
80
- run: |
81
- playwright install chromium --with-deps
82
- python3 -m pytest tests/e2e.py --tracing=retain-on-failure
+ run: python3 -m pytest tests/e2e.py --tracing=retain-on-failure
83
- name: Upload test artifacts
84
if: ${{ failure() && steps.e2e.conclusion == 'failure' }}
85
uses: actions/upload-artifact@v4
0 commit comments