From 36b1bd09a050a11874507e997bfb80dc88cedd45 Mon Sep 17 00:00:00 2001 From: Charles Short Date: Tue, 8 May 2018 19:48:58 -0400 Subject: [PATCH] Allow testing with py35 Update envlist to test for py35 easier. Change-Id: Icbfa85e1f64766a366d0bada1309375fa6f0490f Signed-off-by: Charles Short --- tox.ini | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 0638b31b4..e2cc091f1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py27,pep8,linters +envlist = py27,py35,pep8,linters skipsdist = True [testenv] @@ -32,6 +32,10 @@ commands = {posargs} basepython = python2.7 commands = pytest {posargs} +[testenv:py35] +basepython = python3.5 +commands = pytest {posargs} + [testenv:cover] commands = python setup.py test --coverage --testr-args='{posargs}'