summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini13
1 files changed, 12 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 0e14775..a60616e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -5,7 +5,8 @@ skipsdist = True
[testenv]
usedevelop = True
-install_command = pip install -U {opts} {packages}
+install_command =
+ {toxinidir}/tools/tox_install.sh {env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
OS_STDOUT_NOCAPTURE=False
OS_STDERR_NOCAPTURE=False
@@ -19,6 +20,9 @@ commands = python setup.py testr --testr-args='{posargs}'
commands = flake8
[testenv:venv]
+# NOTE(NiallBunting) Infra does not support constraints for the venv
+# job.
+install_command = pip install -U {opts} {packages}
commands = {posargs}
[testenv:functional]
@@ -28,9 +32,16 @@ setenv =
OS_TEST_PATH = ./glanceclient/tests/functional
[testenv:cover]
+# NOTE(NiallBunting) Infra does not support constraints for the cover
+# job. While the file is set no file is there. Can be removed once infra
+# changes this.
+install_command = pip install -U {opts} {packages}
commands = python setup.py testr --coverage --testr-args='{posargs}'
[testenv:docs]
+# NOTE(NiallBunting) This is a post job. So upper constraints will not
+# apply here.
+install_command = pip install -U {opts} {packages}
commands=
python setup.py build_sphinx