File size: 336 Bytes
16760fa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | .PHONY: env install test lint format check
# Create the virtual environment and install the package with dev extras.
env:
uv venv
uv pip install -e ".[dev]"
install:
uv pip install -e ".[dev]"
test:
uv run pytest -q
lint:
uv run ruff check .
format:
uv run ruff format .
# What CI should run: lint + tests.
check: lint test
|