From a9bfb228529665efd5cd9ac7b304612c9d17b4dd Mon Sep 17 00:00:00 2001 From: Debbie O'Brien Date: Fri, 20 Oct 2023 11:02:47 +0200 Subject: [PATCH] docs: improve python ci guide (#27724) --- docs/src/ci-intro.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/src/ci-intro.md b/docs/src/ci-intro.md index 28e2553d39..10e3e4d37f 100644 --- a/docs/src/ci-intro.md +++ b/docs/src/ci-intro.md @@ -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"