Skip to content
Draft
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
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ start:
test:
uv run pytest

# Type-check all packages (uv run mypy)
# Type-check all package sources (matches CI: uv run mypy packages/*/src).
# Not `mypy .`: that walks every package's tests/conftest.py, which mypy sees as
# duplicate top-level `conftest` modules and aborts before checking anything.
typecheck:
uv run mypy .
uv run mypy packages/*/src

# Check for lint errors
lint:
Expand Down
Loading