teilchensammler/justfile

22 lines
344 B
Makefile

deps:
pip-compile-multi --uv
sync:
pip-sync requirements/dev.txt
lint: lint-ruff lint-django lint-woodpecker
lint-ruff:
ruff check .
lint-django:
python -m django check
lint-woodpecker:
woodpecker-cli lint .woodpecker/workflow.yaml
serve:
python -m django runserver
test *ARGS:
ENV_PATH=.env.test python -m pytest {{ARGS}}