From 0047da68035c8463e98d69f3c4135b112442205b Mon Sep 17 00:00:00 2001 From: AvnishPal Date: Mon, 22 Aug 2016 15:14:54 +0530 Subject: [PATCH] Use upper constraints for all jobs in tox.ini Openstack infra now supports upper constraints for all jobs. Updated tox.ini to use upper constraints for all jobs. Change-Id: I94f57e294a7de91d45c26b1f90caad67b0974718 Closes-Bug: #1614361 (cherry picked from commit 41701862fd831c333a620c11a46877fb5241b9c8) --- tox.ini | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tox.ini b/tox.ini index 379ff5338..01921fff9 100644 --- a/tox.ini +++ b/tox.ini @@ -28,8 +28,6 @@ commands = flake8 distribute = false [testenv:venv] -# TODO(ihrachys): remove once infra supports constraints for this target -install_command = pip install -U {opts} {packages} commands = {posargs} [testenv:functional] @@ -43,8 +41,6 @@ setenv = OS_NEUTRONCLIENT_EXEC_DIR = {envdir}/bin [testenv:cover] -# TODO(ihrachys): remove once infra supports constraints for this target -install_command = pip install -U {opts} {packages} commands = python setup.py test --coverage --coverage-package-name=neutronclient --testr-args='{posargs}' coverage report @@ -53,8 +49,6 @@ commands = commands = sphinx-build -W -b html doc/source doc/build/html [testenv:releasenotes] -# TODO(ihrachys): remove once infra supports constraints for this target -install_command = pip install -U {opts} {packages} commands = sphinx-build -a -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html [flake8]