17 lines
180 B
Makefile
17 lines
180 B
Makefile
test:
|
|
uv run pytest
|
|
|
|
lint:
|
|
uv run ruff check
|
|
|
|
fmt:
|
|
uv run ruff format
|
|
|
|
fix:
|
|
uv run ruff check --fix
|
|
|
|
typecheck:
|
|
uv run basedpyright
|
|
|
|
|
|
check: lint test typecheck |