summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2018-04-13 16:15:04 -0400
committerDoug Hellmann <doug@doughellmann.com>2018-04-13 16:15:04 -0400
commit4ba1d970bcc654e82662957a702e4b777fc236c6 (patch)
tree85643c1e3953686d50921254b50766cee6160b36
parent40064ea0e7324d5bc8498d1090337cae5aa9cb95 (diff)
downloadstevedore-4ba1d970bcc654e82662957a702e4b777fc236c6.tar.gz
set default python to python3
Set the default python to python3 except for the py27 environment. We have to set that explicitly to override the new default. Change-Id: Ia540b70e648d585aa0de017f72ceb96214b67e27 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
-rw-r--r--tox.ini5
1 files changed, 4 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 48eec06..1a5b0a7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,6 +3,7 @@ minversion = 2.0
envlist = py35,py27,pep8,docs
[testenv]
+basepython = python3
install_command = pip install {opts} {packages}
deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
@@ -11,6 +12,9 @@ deps =
distribute = False
commands = python setup.py testr --testr-args='{posargs}'
+[testenv:py27]
+basepython = python2.7
+
[testenv:venv]
deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
@@ -45,7 +49,6 @@ deps =
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:lower-constraints]
-basepython = python3
deps =
-c{toxinidir}/lower-constraints.txt
-r{toxinidir}/test-requirements.txt