Added the py35 env

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: Ib8dd9e45b642eb0cf09570d85696de4cbd2d3e6c
This commit is contained in:
bhavani 2017-03-22 16:52:31 +05:30
parent 18632f314d
commit 7eacdcc22e
2 changed files with 11 additions and 3 deletions

View File

@ -17,7 +17,7 @@ classifier =
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
[files]
packages =
@ -48,4 +48,4 @@ output_file = python_nemesis/locale/python_nemesis.pot
[build_releasenotes]
all_files = 1
build-dir = releasenotes/build
source-dir = releasenotes/source
source-dir = releasenotes/source

10
tox.ini
View File

@ -1,6 +1,6 @@
[tox]
minversion = 2.0
envlist = py34,py27,pep8
envlist = py35,py27,pep8
skipsdist = True
[testenv]
@ -18,6 +18,14 @@ commands = flake8 {posargs}
[testenv:venv]
commands = {posargs}
[testenv:debug-py27]
basepython = python2.7
commands = oslo_debug_helper {posargs}
[testenv:debug-py35]
basepython = python3.5
commands = oslo_debug_helper {posargs}
[flake8]
# E123, E125 skipped as they are invalid PEP-8.
show-source = True