mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-17 04:10:24 +00:00
21 lines
285 B
Makefile
21 lines
285 B
Makefile
all: init docs test
|
|
|
|
init:
|
|
python setup.py develop
|
|
pip install tox coverage Sphinx
|
|
|
|
test:
|
|
coverage erase
|
|
tox
|
|
coverage html
|
|
|
|
docs: documentation
|
|
|
|
documentation:
|
|
python setup.py build_sphinx
|
|
|
|
messages:
|
|
python translations.py make
|
|
|
|
compilemessages:
|
|
python translations.py compile
|