Makefile 510 B

123456789101112131415161718192021222324
  1. .PHONY: check lint format test testfast ready dumpinitialdata
  2. check:
  3. python3 manage.py check
  4. format:
  5. isort --atomic --skip-glob="venv/*" grunge
  6. black --exclude="venv/" grunge
  7. lint:
  8. flake8 grunge
  9. black --check --exclude="venv/" grunge
  10. test:
  11. python3 manage.py test
  12. testfast:
  13. python3 manage.py test --failfast
  14. ready: check lint testfast
  15. dumpinitialdata:
  16. python manage.py dumpdata --natural-foreign --natural-primary \
  17. --exclude=admin.logentry --all --indent=2 > grunge/fixtures/initial_data.json