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: Icfef7cbcb79d3074164b5812184f8b2a27d005d0
This commit is contained in:
Cao Xuan Hoang 2017-02-07 11:47:48 +07:00
parent 0e59627999
commit a057248fe1
1 changed files with 1 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[tox]
minversion = 1.6
envlist = py35,py34,py27,pep8,functional
envlist = py35,py27,pep8,functional
skipsdist = True
[testenv]
@ -49,10 +49,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}