summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index eeb10535..4d64c079 100644
--- a/Makefile
+++ b/Makefile
@@ -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.