summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-03-10 13:53:15 -0400
committerNed Batchelder <ned@nedbatchelder.com>2019-03-10 13:58:02 -0400
commit6d5e33a36175d3948b9e6b3cd45e9089c6753be4 (patch)
tree86210ca855ecaec64115bbee14764ddc1c437b10 /Makefile
parent7e6a8c4420447076d982e72b27ca710d062e8ab8 (diff)
downloadpython-coveragepy-git-6d5e33a36175d3948b9e6b3cd45e9089c6753be4.tar.gz
Drop support for Python 3.4
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)