Skip to content

Commit 7522ae6

Browse files
authored
testing without trace
1 parent 8d6abfd commit 7522ae6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/app-tests.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,13 @@ jobs:
8080
run: |
8181
playwright install chromium --with-deps
8282
python3 -m pytest tests/e2e.py --tracing=retain-on-failure
83+
- name: Run E2E tests on Windows with Playwright
84+
if: runner.os == 'Windows'
85+
run: |
86+
playwright install chromium --with-deps
87+
python3 -m pytest tests/e2e.py
8388
- name: Upload test artifacts
84-
if: ${{ failure() && steps.e2e.conclusion == 'failure' }}
89+
if: ${{ failure() && steps.e2e.conclusion == 'failure' && runner.os != 'Windows' }}
8590
uses: actions/upload-artifact@v4
8691
with:
8792
name: playwright-traces${{ matrix.python_version }}

0 commit comments

Comments
 (0)