summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorEthan Lynn <xjunlin@cn.ibm.com>2016-07-27 14:07:00 +0800
committerEthan Lynn <xjunlin@cn.ibm.com>2016-07-28 11:17:50 +0800
commit2e6ce706956187d4792e1076dd94379b29ba30ef (patch)
tree6824457d27dbc205c38efa4c076edd4121cedb43 /tox.ini
parent072944d91d5358d136c0e42e604e0d469ef8c8fe (diff)
downloadheat-2e6ce706956187d4792e1076dd94379b29ba30ef.tar.gz
Always use upper-constraints
This patch modify tox.ini to always use upper-constraints. Change-Id: I113dd658afebe843db304be6cbc4b1ec5df5d248
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 7 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index f0dd3085e..55b1c58d8 100644
--- a/tox.ini
+++ b/tox.ini
@@ -6,7 +6,7 @@ skipsdist = True
[testenv]
setenv = VIRTUAL_ENV={envdir}
usedevelop = True
-install_command = pip install {opts} {packages}
+install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
@@ -40,9 +40,13 @@ commands =
python tools/custom_guidelines.py --exclude heat/engine/resources/aws
[testenv:venv]
+# Note: infra doesn't support to use of constraints for this target.
+install_command = pip install -U --force-reinstall {opts} {packages}
commands = {posargs}
[testenv:cover]
+# Note: infra doesn't support to use of constraints for this target.
+install_command = pip install -U --force-reinstall {opts} {packages}
commands =
python setup.py testr --coverage --testr-args='^(?!heat_integrationtests){posargs}'
@@ -92,6 +96,8 @@ local-check-factory = heat.hacking.checks.factory
commands = oslo_debug_helper {posargs}
[testenv:releasenotes]
+# Note: infra doesn't support to use of constraints for this target.
+install_command = pip install -U --force-reinstall {opts} {packages}
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:install-guide]