Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- name: Build TypeScript
run: make ts

- name: Build CSS
run: make css

- name: Install Playwright browsers
run: uv run playwright install --with-deps chromium

Expand Down
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,12 @@ collectstatic:
uv.lock: pyproject.toml
uv sync

test: uv.lock
# base.css (Tailwind) and js/dist (TS) are build artifacts, gitignored and not
# tracked — build both before tests so e2e/static serving has fresh assets.
test: uv.lock css ts
uv run --with pytest-django pytest

test-e2e: uv.lock
test-e2e: uv.lock css ts
uv run pytest e2e/

lint:
Expand Down
Loading
Loading