File: justfile

package info (click to toggle)
python-django-tasks 0.12.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 256 kB
  • sloc: python: 1,703; sh: 5; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 473 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Recipes
@default:
  just --list

test *ARGS:
    python -m manage check
    python -m coverage run --source=django_tasks -m manage test --shuffle --noinput {{ ARGS }}
    python -m coverage report
    python -m coverage html

format:
    python -m ruff check django_tasks tests --fix
    python -m ruff format django_tasks tests

lint:
    python -m ruff check django_tasks tests
    python -m ruff format django_tasks tests --check
    python -m mypy django_tasks tests