diff options
author | Ghanshyam Mann <gmann@ghanshyammann.com> | 2019-04-15 03:00:12 +0000 |
---|---|---|
committer | Ghanshyam Mann <gmann@ghanshyammann.com> | 2019-04-15 03:07:18 +0000 |
commit | 6321f01f0cf9edb0df477bb9b785adf96440047f (patch) | |
tree | e7539fbf8885551bca676b8d66e6c1d06578b48a /tox.ini | |
parent | 78e742662edd164c46382c31e106884762fed029 (diff) | |
download | nova-6321f01f0cf9edb0df477bb9b785adf96440047f.tar.gz |
Dropping the py35 testing
All the integration testing has been moved to
Bionic now[1] and py3.5 is not tested runtime for
Train or stable/stein[2].
As per below ML thread, we are good to drop the py35
testing now:
http://lists.openstack.org/pipermail/openstack-discuss/2019-April/005097.html
[1] http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004647.html
[2]
https://governance.openstack.org/tc/reference/runtimes/stein.html
https://governance.openstack.org/tc/reference/runtimes/train.html
Change-Id: Ia1289f038b92c36dbdd79bcdf12d7cb95a3e5aa9
Signed-off-by: zhangyangyang <zhangyangyang@unionpay.com>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 19 |
1 files changed, 4 insertions, 15 deletions
@@ -1,6 +1,6 @@ [tox] minversion = 3.1.1 -envlist = py{27,35},functional,pep8 +envlist = py{27,36,37},functional,pep8 # Automatic envs (pyXX) will use the python version appropriate to that # env and ignore basepython inherited from [testenv]. That's what we # want, and we don't need to be warned about it. @@ -37,18 +37,14 @@ commands = env TEST_OSPROFILER=1 stestr run --combine --no-discover 'nova.tests.unit.test_profiler' stestr slowest -[testenv:py35] +[testenv:py36] commands = stestr run {posargs} env TEST_OSPROFILER=1 stestr run --combine --no-discover 'nova.tests.unit.test_profiler' -[testenv:py36] -commands = - {[testenv:py35]commands} - [testenv:py37] commands = - {[testenv:py35]commands} + {[testenv:py36]commands} [testenv:pep8] description = @@ -101,14 +97,7 @@ commands = stestr slowest # TODO(gcb) Merge this into [testenv:functional] when functional tests are gating -# with python 3.5 -[testenv:functional-py35] -basepython = python3.5 -setenv = {[testenv]setenv} -deps = {[testenv:functional]deps} -commands = - {[testenv:functional]commands} - +# with python 3 [testenv:functional-py36] basepython = python3.6 setenv = {[testenv]setenv} |