summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2018-06-06 17:58:17 -0400
committerDoug Hellmann <doug@doughellmann.com>2018-06-06 17:58:17 -0400
commit8b7ac9c02daa17b94247bd357297b1449c813711 (patch)
tree3e1757c0333f74e199c60a585d2b2c3af7b37f1c
parent3c4006313c6f4e4333f76e324bb0560302a04c8d (diff)
downloadpython-designateclient-8b7ac9c02daa17b94247bd357297b1449c813711.tar.gz
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: If352b0ca1de2cda56089ebe1c7db04feb5ba983b Signed-off-by: Doug Hellmann <doug@doughellmann.com>
-rw-r--r--tox.ini7
1 files changed, 7 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 7a8a819..cb3f907 100644
--- a/tox.ini
+++ b/tox.ini
@@ -25,6 +25,7 @@ commands =
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
[testenv:docs]
+basepython = python3
deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
-r{toxinidir}/requirements.txt
@@ -32,18 +33,23 @@ deps =
commands = sphinx-build -b html doc/source doc/build/html
[testenv:flake8]
+basepython = python3
commands = flake8
[testenv:pep8]
+basepython = python3
commands = flake8
[testenv:pyflakes]
+basepython = python3
commands = flake8
[testenv:cover]
+basepython = python3
commands = python setup.py testr --coverage --testr-args='{posargs}'
[testenv:venv]
+basepython = python3
commands = {posargs}
[testenv:functional]
@@ -57,6 +63,7 @@ passenv = OS_STDOUT_CAPTURE
TEMPEST_CONFIG
[testenv:releasenotes]
+basepython = python3
commands = sphinx-build -a -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[flake8]