From a17cf64b67fd90b93eb2434d7ee9412f96911b56 Mon Sep 17 00:00:00 2001 From: Milan Zamazal Date: Tue, 28 Jan 2020 11:29:30 +0100 Subject: [PATCH] Make tox testenv Python version agnostic --- Makefile | 2 +- tox.ini | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a5e8197..83a2a39 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,7 @@ check-local: else \ export PYCURL_SSL_LIBRARY=openssl; \ fi; \ - tox -r -e py27 + tox -r -e py dist: ${TARBALL_DIST_LOCATION} diff --git a/tox.ini b/tox.ini index fe33aa0..3b10378 100644 --- a/tox.ini +++ b/tox.ini @@ -1,8 +1,8 @@ [tox] -envlist = py27,docs +envlist = py,docs -[testenv:py27] +[testenv:py] commands = {toxinidir}/scripts/check_style.sh flake8 pytest -vvv \