docs: improve python ci guide (#27724)

This commit is contained in:
Debbie O'Brien 2023-10-20 11:02:47 +02:00 committed by GitHub
parent f46c889449
commit a9bfb22852
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,7 +101,12 @@ jobs:
- name: Ensure browsers are installed
run: python -m playwright install --with-deps
- name: Run your tests
run: pytest
run: pytest --tracing=retain-on-failure
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-traces
path: test-results/
```
```yml java title=".github/workflows/playwright.yml"