teilchensammler/justfile
bronsen 0b57968101 [just] sync using pip-tools' pip-sync
pip-sync uninstalls packages that are not in the specified requirements
file; we want that
2025-03-14 11:13:19 +01:00

19 lines
243 B
Makefile

deps:
pip-compile-multi --uv
sync:
pip-sync requirements/dev.txt
lint: lint-ruff lint-django
lint-ruff:
ruff check .
lint-django:
python -m django check
serve:
python -m django runserver
test *ARGS:
python -m pytest {{ARGS}}