diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-13 07:30:37 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-13 07:30:37 -0500 |
commit | e0786fc45d2f0ae38a058e066bc2bd9cb4071543 (patch) | |
tree | c84bdb55697c788db7fcad67df2d245ef8616565 | |
parent | 8b65ba2e0419087b5b24ea04107e983323940ee0 (diff) | |
download | python-coveragepy-git-e0786fc45d2f0ae38a058e066bc2bd9cb4071543.tar.gz |
More smoke-test targets
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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) |