2015-06-18 14:58:29 +00:00
|
|
|
.PHONY: all flake8 test coverage
|
2015-06-15 09:02:33 +00:00
|
|
|
|
2015-06-18 14:58:29 +00:00
|
|
|
all: flake8 coverage
|
2015-06-15 09:02:33 +00:00
|
|
|
flake8:
|
2015-06-18 14:58:29 +00:00
|
|
|
flake8 --max-line-length=80 --count --statistics --exit-zero tqdm/
|
2015-09-14 15:28:07 +00:00
|
|
|
flake8 --max-line-length=80 --count --statistics --exit-zero examples/
|
2015-06-15 09:02:33 +00:00
|
|
|
|
|
|
|
test:
|
|
|
|
nosetests tqdm -v
|
|
|
|
|
|
|
|
coverage:
|
|
|
|
nosetests tqdm --with-coverage --cover-package=tqdm -v
|