teilchensammler/justfile
bronsen 6e078fe03d [just] ignore errors from linting workflow files
This assumes the error stems from not having woodpecker-cli installed or
not having it configured
2025-03-15 00:05:18 +01:00

22 lines
345 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}}