Fix byte/str mix in get_git_head()
[mygpo.git] / makefile
blob1fd54394d247106c7ce6e6f0128a4397fe848d80
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 ./manage.py test
9 coverage report
11 clean:
12 find -name "*.pyc" -exec rm '{}' \;
15 .PHONY: all help test clean unittest coverage