Add py36 to default tox environments

Seems like I46b077f268d3a812e36f3de532ce1bfe7636166c removed py35 from
the default tox environments. This commit adds py36 there instead to
make sure Python 3 is covered.

Also debug-py35 env is updated to debug-py36 to remove py35 completely,
which is what aforementioned commit was intending to do.

Change-Id: I5a6fdaa0b5d94b9d2827a1a3889a00fce121cf6d
This commit is contained in:
Michał Dulko 2019-05-24 17:36:34 +02:00
parent 53059406ea
commit 4f75760aa4
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[tox]
minversion = 2.3.1
envlist = py27,pep8
envlist = py27,py36,pep8
skipsdist = True
[testenv]
@ -29,8 +29,8 @@ commands = oslo_debug_helper -t kuryr_kubernetes/tests {posargs}
basepython = python2.7
commands = oslo_debug_helper -t kuryr_kubernetes/tests {posargs}
[testenv:debug-py35]
basepython = python3.5
[testenv:debug-py36]
basepython = python3.6
commands = oslo_debug_helper -t kuryr_kubernetes/tests {posargs}
[testenv:pep8]