django-configurations/Makefile

13 lines
303 B
Makefile
Raw Normal View History

2012-09-21 13:49:08 +00:00
.PHONY: test release doc
2012-07-21 13:56:04 +00:00
test:
flake8 configurations --ignore=E501,E127,E128,E124
coverage run --branch --source=configurations manage.py test configurations
coverage report --omit=configurations/test*
release:
2013-03-28 09:59:12 +00:00
python setup.py sdist bdist_wheel register upload -s
doc:
cd docs; make html; cd ..