Remove __future__ imports -- the future is here!
[mygpo.git] / makefile
blob0e235ed9d1113d3bacd2e869507162aa6783e9dd
1 all: help
3 help:
4 @echo 'make test run tests and show coverage report'
5 @echo 'make clean clean up files'
7 test:
8 envdir envs/dev/ coverage run --branch --source=mygpo ./manage.py test
9 coverage report --show-missing
11 clean:
12 find -name "*.pyc" -exec rm '{}' \;
15 .PHONY: all help test clean unittest coverage