summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-03-10 14:27:18 -0400
committerGitHub <noreply@github.com>2019-03-10 14:27:18 -0400
commit2cab54c755607dccdf2cf29711b72f8bf42c9cf5 (patch)
tree2887e319bcca8800a3db071de4ef4a39aca3bf6c /Makefile
parent6541759acef3ff4f957441d9b1844acaf3ecb8a4 (diff)
parentb140512e4205664d37452d3f4c7ca4e0daf078e8 (diff)
downloadpython-coveragepy-git-2cab54c755607dccdf2cf29711b72f8bf42c9cf5.tar.gz
Merge branch 'master' into travis-xenial
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a62c9021..e9f790a7 100644
--- a/Makefile
+++ b/Makefile
@@ -51,10 +51,12 @@ test:
PYTEST_SMOKE_ARGS = -n 6 -m "not expensive" --maxfail=3 $(ARGS)
smoke:
- COVERAGE_NO_PYTRACER=1 tox -q -e py27,py34 -- $(PYTEST_SMOKE_ARGS)
+ # Run tests with the C tracer in the lowest supported Python versions.
+ COVERAGE_NO_PYTRACER=1 tox -q -e py27,py35 -- $(PYTEST_SMOKE_ARGS)
pysmoke:
- COVERAGE_NO_CTRACER=1 tox -q -e py27,py34 -- $(PYTEST_SMOKE_ARGS)
+ # Run tests with the Python tracer in the lowest supported Python versions.
+ COVERAGE_NO_CTRACER=1 tox -q -e py27,py35 -- $(PYTEST_SMOKE_ARGS)
metacov:
COVERAGE_COVERAGE=yes tox $(ARGS)