Compare commits

...

5 Commits

Author SHA1 Message Date
Richard Schreiber
e2afb2300c Update tests.yml 2026-05-12 13:07:26 +02:00
Richard Schreiber
1a2ea42084 try installing playwright as dep 2026-05-12 13:00:22 +02:00
Richard Schreiber
00514f73e8 Update tests.yml 2026-05-12 12:49:08 +02:00
Richard Schreiber
fc8d1a2430 Update tests.yml 2026-05-12 12:36:09 +02:00
Richard Schreiber
508e67d547 Fix playwright install on CI 2026-05-12 12:12:59 +02:00
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -126,6 +126,7 @@ dev = [
"pytest-xdist==3.8.*",
"pytest-playwright",
"pytest==9.0.*",
"playwright",
"responses",
]