Add Makefile

This commit is contained in:
Hadrien Mary 2015-06-15 11:02:33 +02:00
parent 0421006786
commit 38d18f18cc
1 changed files with 10 additions and 0 deletions

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
.PHONY: flake8 test coverage
flake8:
flake8 --exclude "test_*" --max-line-length=80 --count --statistics --exit-zero tqdm/
test:
nosetests tqdm -v
coverage:
nosetests tqdm --with-coverage --cover-package=tqdm -v