From 986e9ebb24f0a6bb2ce38c3c183bcfb42fe30325 Mon Sep 17 00:00:00 2001 From: Drew Thorstensen Date: Mon, 31 Oct 2016 09:33:38 -0400 Subject: [PATCH] Use upper constraints The tox.ini needs to make use of the upper constraints. Failure to do so is causing us to hit known issues with newer versions of packages. Change-Id: I065adf88c599ad91af3f29d02ccd225f5d07ffa9 Closes-Bug: 1637938 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index ff9101d2..06697d09 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ skipsdist = True [testenv] usedevelop = True -install_command = pip install -U {opts} {packages} +install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages} setenv = VIRTUAL_ENV={envdir} deps = -r{toxinidir}/requirements.txt