1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
# Recipes
@default:
just --list
test *ARGS:
python3 -m manage check
python3 -m manage makemigrations --dry-run --check --noinput
python3 -m coverage run --source=django_tasks_rq -m manage test --shuffle --noinput {{ ARGS }}
python3 -m coverage report
python3 -m coverage html
format:
python3 -m ruff check django_tasks_rq tests --fix
python3 -m ruff format django_tasks_rq tests
lint:
python3 -m ruff check django_tasks_rq tests
python3 -m ruff format django_tasks_rq tests --check
python3 -m mypy django_tasks_rq tests
|