From 1a2ea42084bacaad237ea8adffcc71ad3032e213 Mon Sep 17 00:00:00 2001 From: Richard Schreiber Date: Tue, 12 May 2026 13:00:22 +0200 Subject: [PATCH] try installing playwright as dep --- .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 ead780fa9d..0a6dacd45c 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 - run: npm install @playwright/test && 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 e37695c00e..65a5d2895e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -126,6 +126,7 @@ dev = [ "pytest-xdist==3.8.*", "pytest-playwright", "pytest==9.0.*", + "playwright", "responses", ]