Support python 3.5 in tox

Our current tox configuration provides no support for python 3.5
even though it is the version that ships with current ubuntu
(xenial) and Fedora (25) systems, and even though in gate the
python3 jobs run on xenial with python 3.5.

Add py35 env to tox.ini alongside py34, py27, and pep8.

TrivialFix

Change-Id: Ib32069f9185c5233c8f96164781ec66c56db33bd
This commit is contained in:
Tom Barron 2017-01-05 18:28:01 -05:00
parent 860bf20430
commit d08713c1a3
1 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
[tox]
minversion = 2.0
skipsdist = True
envlist = py34,py27,pep8
envlist = py35,py34,py27,pep8
[testenv]
setenv = VIRTUAL_ENV={envdir}
@ -33,6 +33,10 @@ commands = oslo_debug_helper {posargs}
basepython = python3.4
commands = oslo_debug_helper {posargs}
[testenv:debug-py35]
basepython = python3.5
commands = oslo_debug_helper {posargs}
[testenv:pep8]
commands =
flake8 {posargs}