From 9f4d478bd76b5ca76b99bbebb332fcfe11480978 Mon Sep 17 00:00:00 2001 From: Jim Rollenhagen Date: Fri, 19 Aug 2016 08:36:52 -0400 Subject: [PATCH] Use upper-constraints for all tox targets The issue has been resolved by infra [0], so we can use upper constraints for all targets. [0] http://lists.openstack.org/pipermail/openstack-dev/2016-August/101474.html Change-Id: I988d5887b28a261382dbc67e12ffdc5d06200c46 --- tox.ini | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tox.ini b/tox.ini index 7b6d636..bf7073a 100644 --- a/tox.ini +++ b/tox.ini @@ -22,21 +22,9 @@ commands = doc8 README.rst CONTRIBUTING.rst HACKING.rst doc/source [testenv:venv] -# NOTE(amrith) The setting of the install_command in this location -# is only required because currently infra does not actually -# support constraints files for the docs job, and while -# the environment variable UPPER_CONSTRAINTS_FILE is set, there's -# no file there. It can be removed when infra changes this. -install_command = pip install -U {opts} {packages} commands = {posargs} [testenv:cover] -# NOTE(amrith) The setting of the install_command in this location -# is only required because currently infra does not actually -# support constraints files for the cover job, and while -# the environment variable UPPER_CONSTRAINTS_FILE is set, there's -# no file there. It can be removed when infra changes this. -install_command = pip install -U {opts} {packages} commands = python setup.py test --coverage --testr-args='{posargs}' [testenv:docs]