summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-01-13 07:30:37 -0500
committerNed Batchelder <ned@nedbatchelder.com>2017-01-13 07:30:37 -0500
commit9845bf47ac42e5f16fc0fc8de2d8b098fdd5c939 (patch)
tree0155437f287f0aa30a0c73c99561f30fbe873613 /Makefile
parentd2e93d4f93373065230ae5f2d1b58338e5ba6819 (diff)
downloadpython-coveragepy-9845bf47ac42e5f16fc0fc8de2d8b098fdd5c939.tar.gz
More smoke-test targets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a9a5a72..9b93b8b 100644
--- a/Makefile
+++ b/Makefile
@@ -47,8 +47,13 @@ pep8:
test:
tox -e py27,py35 $(ARGS)
+TOX_SMOKE_ARGS = -n 6 -m "not expensive" --maxfail=3 $(ARGS)
+
smoke:
- COVERAGE_NO_PYTRACER=1 tox -e py27,py35 -- -n 6 -m "not expensive" $(ARGS)
+ COVERAGE_NO_PYTRACER=1 tox -e py27,py35 -- $(TOX_SMOKE_ARGS)
+
+pysmoke:
+ COVERAGE_NO_CTRACER=1 tox -e py27,py35 -- $(TOX_SMOKE_ARGS)
metacov:
COVERAGE_COVERAGE=yes tox $(ARGS)