summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2018-06-06 15:27:00 -0400
committerDoug Hellmann <doug@doughellmann.com>2018-06-06 16:55:25 -0400
commit29ef02a51d0103e03a8ce996f700149def938594 (patch)
tree556453e853500b821ddc722d7e92cab7eaafca31 /tox.ini
parent64b5e9e8821d5fbb0eb086b4e88dc18a822b5f76 (diff)
downloadkeystonemiddleware-29ef02a51d0103e03a8ce996f700149def938594.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: I21491f302cbc6ca7a9b5ac12c487cf214bf4866e Signed-off-by: Doug Hellmann <doug@doughellmann.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini7
1 files changed, 7 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 860a0a3..41e6826 100644
--- a/tox.ini
+++ b/tox.ini
@@ -20,19 +20,23 @@ deps = -r{toxinidir}/requirements.txt
commands = stestr run {posargs}
[testenv:pep8]
+basepython = python3
commands =
flake8
bandit -r keystonemiddleware -x tests -n5
[testenv:bandit]
+basepython = python3
# NOTE(browne): This is required for the integration test job of the bandit
# project. Please do not remove.
commands = bandit -r keystonemiddleware -x tests -n5
[testenv:venv]
+basepython = python3
commands = {posargs}
[testenv:cover]
+basepython = python3
setenv =
{[testenv]setenv}
PYTHON=coverage run --source keystonemiddleware --parallel-mode
@@ -43,6 +47,7 @@ commands =
coverage xml -o cover/coverage.xml
[testenv:debug]
+basepython = python3
commands = oslo_debug_helper -t keystonemiddleware/tests {posargs}
@@ -58,12 +63,14 @@ show-source = True
exclude = .venv,.tox,dist,doc,*egg,build
[testenv:docs]
+basepython = python3
deps = -r{toxinidir}/doc/requirements.txt
commands=
doc8 doc/source
python setup.py build_sphinx
[testenv:releasenotes]
+basepython = python3
deps = -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html