diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-05-01 22:23:17 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-05-02 07:38:20 -0400 |
commit | 3f19cd70ee61e126e1577302234bc23145a86dcf (patch) | |
tree | 397595cb136b67107d4cbcfe077d772688df7ae9 | |
parent | 749f492bf6b56666f28f8673b58828b6fc47bfcf (diff) | |
download | python-coveragepy-git-3f19cd70ee61e126e1577302234bc23145a86dcf.tar.gz |
build: don't refer to py27 in the Makefile
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -55,15 +55,15 @@ pep8: pycodestyle --filename=*.py --repeat $(LINTABLE) test: - tox -q -e py27,py35 $(ARGS) + tox -q -e py35 $(ARGS) PYTEST_SMOKE_ARGS = -n 6 -m "not expensive" --maxfail=3 $(ARGS) smoke: ## Run tests quickly with the C tracer in the lowest supported Python versions. - COVERAGE_NO_PYTRACER=1 tox -q -e py27,py35 -- $(PYTEST_SMOKE_ARGS) + COVERAGE_NO_PYTRACER=1 tox -q -e py35 -- $(PYTEST_SMOKE_ARGS) pysmoke: ## Run tests quickly with the Python tracer in the lowest supported Python versions. - COVERAGE_NO_CTRACER=1 tox -q -e py27,py35 -- $(PYTEST_SMOKE_ARGS) + COVERAGE_NO_CTRACER=1 tox -q -e py35 -- $(PYTEST_SMOKE_ARGS) # Coverage measurement of coverage.py itself (meta-coverage). See metacov.ini # for details. |