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 0c52170 commit 308b9fbCopy full SHA for 308b9fb
.github/workflows/end2end.yml
@@ -18,6 +18,17 @@ jobs:
18
19
- name: Install the project
20
run: uv sync --all-extras --dev --frozen
21
+
22
+ - name: Install Playwright browsers
23
+ run: uv run playwright install
24
25
+ - name: Cache Playwright browsers
26
+ uses: actions/cache@v4
27
+ with:
28
+ path: ~/.cache/ms-playwright
29
+ key: ${{ runner.os }}-playwright-browsers-week-${{ env.CACHE_WEEK }}
30
+ restore-keys: |
31
+ ${{ runner.os }}-playwright-browsers-week-
32
33
- name: Run tests
34
run: uv run pytest tests -m "e2e"
0 commit comments