summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorlikui <likui@yovole.com>2020-10-30 09:04:53 +0800
committerlikui <likui@yovole.com>2020-10-30 09:04:53 +0800
commit3753c70225a40bd71276715fd9bc13ce2fb9ac6a (patch)
tree12444d9543ad1438d40248c4fe9ee61d83c69bfe /tox.ini
parentd21d37d6285fa949f286c86ccbccd8fc869bb5bf (diff)
downloadtrove-3753c70225a40bd71276715fd9bc13ce2fb9ac6a.tar.gz
Update TOX_CONSTRAINTS_FILE
UPPER_CONSTRAINTS_FILE is old name and deprecated -https://zuul-ci.org/docs/zuul-jobs/python-roles.html#rolevar-tox.tox_constraints_file This allows to use lower-constraints file as more readable way instead of UPPER_CONSTRAINTS_FILE=<lower-constraints file>. [1] https://review.opendev.org/#/c/722814/ Change-Id: Ida407c05ad1026820be71ddfb84a97bcb3418df9
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 522b1bd6..175a9c94 100644
--- a/tox.ini
+++ b/tox.ini
@@ -13,7 +13,7 @@ setenv = VIRTUAL_ENV={envdir}
usedevelop = True
install_command = pip install \
- -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} \
+ -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} \
-U {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt