mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-17 06:30:31 +00:00
9 lines
221 B
Makefile
9 lines
221 B
Makefile
export DJANGO_SETTINGS_MODULE=tests.settings
|
|
export PYTHONPATH=.
|
|
|
|
.PHONY: test
|
|
|
|
test:
|
|
flake8 avatar --ignore=E124,E501,E127,E128
|
|
coverage run --branch --source=avatar `which django-admin.py` test tests
|
|
coverage report
|