From 4f75760aa4c6843ec63859cff88785e6ae944362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Dulko?= Date: Fri, 24 May 2019 17:36:34 +0200 Subject: [PATCH] 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 --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 899d6c5c7..234b19628 100644 --- a/tox.ini +++ b/tox.ini @@ -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]