summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-07-09 09:55:22 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-07-09 09:55:22 -0400
commit829cde3cb6fcd15ebf884446b6a27d7e2dc7aadb (patch)
treebd50ea6052871f1e0cc5f282728acca00c462293 /Makefile
parent2dd34c19fdacc7d34665b0a7eb07cee065da36a8 (diff)
downloadpython-coveragepy-git-829cde3cb6fcd15ebf884446b6a27d7e2dc7aadb.tar.gz
Py3k: an explicit coverage.py script since setuptools can't make one for us.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index fa887e64..aad68429 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,10 @@ clean:
-rm -f setuptools-*.egg
-rm -rf doc/_build/*
-LINTABLE_TESTS = \
+LINTABLE = \
+ coverage \
+ scripts/coverage \
+ setup.py \
test/coverage_coverage.py \
test/coveragetest.py \
test/test_api.py \
@@ -34,8 +37,8 @@ LINTABLE_TESTS = \
test/test_templite.py
lint:
- -python -x /Python25/Scripts/pylint.bat --rcfile=.pylintrc coverage $(LINTABLE_TESTS) setup.py
- python /Python25/Lib/tabnanny.py coverage test setup.py
+ -python -x /Python25/Scripts/pylint.bat --rcfile=.pylintrc $(LINTABLE)
+ python /Python25/Lib/tabnanny.py coverage scripts test setup.py
python checkeol.py
testready: $(TEST_ZIP) devinst