summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-01-12 08:00:56 -0500
committerNed Batchelder <ned@nedbatchelder.com>2017-01-12 08:00:56 -0500
commite5b6d5af086583410298baba20c0e6bf87d53b5c (patch)
tree9d35f88deffc414dac90eeca84e2e870379525c6 /Makefile
parent34c8cc69cada9fef4609d22c1b2fa6e28f365ea7 (diff)
downloadpython-coveragepy-e5b6d5af086583410298baba20c0e6bf87d53b5c.tar.gz
Run lint with tox. I wish it ran faster...
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index e7420a7..a9a5a72 100644
--- a/Makefile
+++ b/Makefile
@@ -30,12 +30,13 @@ clean:
sterile: clean
-rm -rf .tox*
-LINTABLE = coverage igor.py setup.py tests ci/*.py
+LINTABLE = coverage tests igor.py setup.py __main__.py
lint:
- -pylint $(LINTABLE)
- python -m tabnanny $(LINTABLE)
- python igor.py check_eol
+ tox -e lint
+
+todo:
+ -grep -R --include=*.py TODO $(LINTABLE)
spell:
-pylint --disable=all --enable=spelling $(LINTABLE)