Install Playwright browsers in CI test jobs
Django CI/CD / test (push) Successful in 2m37s
Staging deployment / deploy (push) Successful in 28s
Staging deployment / teardown (push) Has been skipped
Django CI/CD / build-and-push (push) Has been skipped

The e2e tests launch chromium, but uv sync only installs the playwright
package, not the browser binaries, so CI failed with "Executable
doesn't exist" for the headless shell.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-06-12 17:24:16 +02:00
parent 3a5b6e2d51
commit de0c2eced0
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -19,6 +19,9 @@ jobs:
- name: Install dependencies
run: uv sync --frozen
- name: Install Playwright browsers
run: uv run playwright install --with-deps chromium
- name: Run Migrations
run: uv run python manage.py migrate