From 660e06a982fd43f388474fcd40990aee4432a62c Mon Sep 17 00:00:00 2001 From: Don Penney Date: Tue, 25 Jun 2019 13:04:56 -0400 Subject: [PATCH] Update tox.ini files to use stein constraints This updates the upper-constraints.txt used by tox for installing python modules to reference the stable/stein constraints. Change-Id: Ia875f05d807bd7404ae8ad12f852bce092202ee8 Partial-Bug: 1834216 Signed-off-by: Don Penney --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 54df28aa..ebe29401 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,9 @@ minversion = 2.3 skipsdist = True [testenv] -install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/upper-constraints.txt} {opts} {packages} +install_command = pip install \ + -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/stable/stein/upper-constraints.txt} \ + {opts} {packages} setenv = VIRTUAL_ENV={envdir} OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1