summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-11-26 22:53:28 -0500
committerNed Batchelder <ned@nedbatchelder.com>2012-11-26 22:53:28 -0500
commiteace593bafa344004a23e919394d71518356454c (patch)
treea1973c31620212f53b806b66a4a53efba323ee91 /Makefile
parentce2fb5ab97cef3da85b9cc8ca7b44b970640ee67 (diff)
downloadpython-coveragepy-eace593bafa344004a23e919394d71518356454c.tar.gz
Bring the Makefile into the modern testing era
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 5 insertions, 14 deletions
diff --git a/Makefile b/Makefile
index d582723..f4af63d 100644
--- a/Makefile
+++ b/Makefile
@@ -37,21 +37,12 @@ lint:
pep8:
pep8 --filename=*.py --ignore=E401,E301 --repeat coverage
-testready: testdata devinst
+tests:
+ tox -e py27
-tests: testready
- nosetests
-
-testdata: $(TEST_ZIP) $(TEST_EGG)
-$(TEST_ZIP): test/covmodzip1.py
- zip -j $@ $+
-
-$(TEST_EGG): test/eggsrc/setup.py test/eggsrc/egg1/egg1.py
- cd test/eggsrc; python setup.py -q bdist_egg
-
-covcov: testready
- python test/meta_coverage.py run
- python test/meta_coverage.py report
+metacov:
+ COVERAGE_COVERAGE=yes tox
+ python igor.py combine_html
# Kitting