Allow testing with py35

Update envlist to test for py35 easier.

Change-Id: Icbfa85e1f64766a366d0bada1309375fa6f0490f
Signed-off-by: Charles Short <zulcss@gmail.com>
This commit is contained in:
Charles Short 2018-05-08 19:48:58 -04:00
parent fece9571ff
commit 36b1bd09a0
1 changed files with 5 additions and 1 deletions

View File

@ -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}'