From 85ec74e8883f12bf06d4c17f97198acaf5d9b45b Mon Sep 17 00:00:00 2001 From: Jim Rollenhagen Date: Thu, 19 May 2016 10:03:31 -0400 Subject: [PATCH] Use constraints for all the things This configures tox to use upper-constraints for everything. Change-Id: I5611d0d9052d26a2e9e0b63fc302e4c65b83ba7c --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 54e6695..90e0b59 100644 --- a/tox.ini +++ b/tox.ini @@ -2,6 +2,7 @@ envlist = pep8,py27,py34 [testenv] +install_command = pip install -U -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages} usedevelop = True deps = -r{toxinidir}/requirements.txt @@ -22,4 +23,4 @@ commands = [flake8] max-complexity=15 -show-source = True \ No newline at end of file +show-source = True