File: justfile

package info (click to toggle)
python-django-tasks-rq 0.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 160 kB
  • sloc: python: 682; sh: 5; makefile: 4
file content (19 lines) | stat: -rw-r--r-- 565 bytes parent folder | download
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