From 8857a844ba5eb59c87c5517dd08d3627cdc3e79c Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Wed, 26 Sep 2018 18:58:25 -0400 Subject: [PATCH] fix tox python3 overrides We want to default to running all tox environments under python 3, so set the basepython value in each environment. We do not want to specify a minor version number, because we do not want to have to update the file every time we upgrade python. We do not want to set the override once in testenv, because that breaks the more specific versions used in default environments like py35 and py36. Change-Id: I6e18dd70a74694ba2e7aad535f487498a26d05bb Signed-off-by: Doug Hellmann --- specs/mitaka/bgp-dynamic-routing.rst | 2 +- tox.ini | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/specs/mitaka/bgp-dynamic-routing.rst b/specs/mitaka/bgp-dynamic-routing.rst index 4602f9a2f..225cb76cd 100644 --- a/specs/mitaka/bgp-dynamic-routing.rst +++ b/specs/mitaka/bgp-dynamic-routing.rst @@ -47,7 +47,7 @@ the cloud reachable through the remaining healthy link. group { color = lightgreen; - label = "OpenStack Deployment"; + //label = "OpenStack Deployment"; gateway_router; tenant_router1; tenant_router2; diff --git a/tox.ini b/tox.ini index b10fe7489..959e35c9d 100644 --- a/tox.ini +++ b/tox.ini @@ -19,9 +19,11 @@ deps = commands = stestr run --slowest {posargs} [testenv:venv] +basepython = python3 commands = {posargs} [testenv:docs] +basepython = python3 deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} -r{toxinidir}/doc/requirements.txt