From 11d941c918e94a3363091d64902ab5d0189cf8a7 Mon Sep 17 00:00:00 2001 From: Tin Lam Date: Sat, 11 Aug 2018 23:12:32 -0500 Subject: [PATCH] chore(py3): update tox targets This patch set updates the various tox targets to use python 3 first per Stein goal outlined in [0]. Also, added minversion to tox. [0] https://governance.openstack.org/tc/goals/stein/python3-first.html Change-Id: I60ad774e089df248f3b1993a815dc6ac7232c3fc Signed-off-by: Tin Lam --- tox.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tox.ini b/tox.ini index 5be01f3f..c478a7b6 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,6 @@ [tox] skipsdist = True +minversion = 2.3.1 envlist = py35, pep8, cover, bandit [testenv] @@ -19,12 +20,14 @@ commands = rm -Rf .testrepository/times.dbm [testenv:py35] +basepython = python3.5 commands = {[testenv]commands} stestr run {posargs} stestr slowest [testenv:py36] +basepython = python3.6 commands = {[testenv]commands} stestr run {posargs}