summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2018-04-12 16:20:18 -0400
committerDoug Hellmann <doug@doughellmann.com>2018-04-12 16:20:18 -0400
commitb2c131076a6a4f71b98b733c511683d61eb39dd6 (patch)
treeb05ca013f0fe707bc082b41481552e12aaff78ad /tox.ini
parentca3c45044b08e2bb07ddd43705cbb643ff6e8536 (diff)
downloadoslo-concurrency-b2c131076a6a4f71b98b733c511683d61eb39dd6.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: I3fa047b21fa6bc6e5bdf3222287fdce31c5ccef2 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini6
1 files changed, 4 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index a3174e5..fa40c2d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,6 +3,7 @@ minversion = 2.0
envlist = py35,py27,pep8
[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}
@@ -13,8 +14,10 @@ commands =
lockutils-wrapper python setup.py testr --slowest --testr-args='{posargs}'
env TEST_EVENTLET=1 lockutils-wrapper python setup.py testr --slowest --testr-args='{posargs}'
+[testenv:py27]
+basepython = python2.7
+
[testenv:pep8]
-basepython = python3
deps =
-r{toxinidir}/test-requirements.txt
commands =
@@ -52,7 +55,6 @@ commands = pip-missing-reqs -d --ignore-module=oslo_concurrency* --ignore-file=o
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