From b21b69b2b8e0c59dd7e1e6cd51f3aa6416dcb7af Mon Sep 17 00:00:00 2001 From: Richard Schreiber Date: Tue, 12 May 2026 13:14:05 +0200 Subject: [PATCH] Fix playwright install on CI (#6180) --- .github/workflows/tests.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1eb04f22b..a1c1ba297 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -123,7 +123,7 @@ jobs: working-directory: ./src run: make all compress - name: Install Playwright browsers - run: npx playwright install + run: playwright install - name: Run E2E tests working-directory: ./src run: PRETIX_CONFIG_FILE=tests/ci_postgres.cfg py.test tests/e2e/ -v --maxfail=10 diff --git a/pyproject.toml b/pyproject.toml index e37695c00..65a5d2895 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -126,6 +126,7 @@ dev = [ "pytest-xdist==3.8.*", "pytest-playwright", "pytest==9.0.*", + "playwright", "responses", ]