Remove a py34 environment from tox

The gating on python 3.4 is restricted to <= Mitaka. This is due to
the change from Ubuntu Trusty to Xenial, where only python3.5 is
available. There is no need to continue to keep these settings.

Change-Id: Id8a9dda9ea25b47afc35e0605f4df2f3f22c5f38
This commit is contained in:
Cao Xuan Hoang 2017-02-07 13:28:28 +07:00
parent 7c2c97d725
commit ceb3c72ec7
1 changed files with 1 additions and 5 deletions

View File

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