From 36945ff6ea98e19b54bdd8db6d7e37d2df591757 Mon Sep 17 00:00:00 2001 From: Liam Young Date: Thu, 12 Apr 2018 12:53:23 +0000 Subject: [PATCH 1/2] Tidyup tox and remove point release python version stuff --- tox.ini | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/tox.ini b/tox.ini index cb8d16d..a12bef0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,6 @@ [tox] -envlist = pep8,py27,py34,py35,py36 +envlist = pep8,py3 skipsdist = True -skip_missing_interpreters = True [testenv] setenv = VIRTUAL_ENV={envdir} @@ -10,20 +9,12 @@ install_command = pip install {opts} {packages} commands = nosetests {posargs} {toxinidir}/unit_tests -[testenv:py34] -basepython = python3.4 -deps = -r{toxinidir}/test-requirements.txt - -[testenv:py35] -basepython = python3.5 -deps = -r{toxinidir}/test-requirements.txt - -[testenv:py36] -basepython = python3.6 +[testenv:py3] +basepython = python3 deps = -r{toxinidir}/test-requirements.txt [testenv:pep8] -basepython = python3.6 +basepython = python3 deps = -r{toxinidir}/test-requirements.txt commands = flake8 {posargs} zaza unit_tests From b8120df42cdbde17b43ac71a3e126909c5d48f7f Mon Sep 17 00:00:00 2001 From: Liam Young Date: Wed, 18 Apr 2018 07:47:20 +0000 Subject: [PATCH 2/2] Update travis to remove point release from tox target --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6c40395..3089dc7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,4 +6,4 @@ python: install: pip install tox-travis script: - tox -c tox.ini -e pep8 - - tox -c tox.ini -e py36 + - tox -c tox.ini -e py3