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
commitc8d85025b4bc4db8bec0636792434555c7a60cd5 (patch)
tree48833046e5343c053078018b5bf028735010b6a7 /Makefile
parent59e3df3aee79e4af21557870a89edd64a84ebc8d (diff)
downloadpython-coveragepy-c8d85025b4bc4db8bec0636792434555c7a60cd5.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 fa887e6..aad6842 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