From: Zack Cerza Date: Tue, 14 Jul 2015 16:29:27 +0000 (-0600) Subject: tox: Pass --upgrade to pip install X-Git-Tag: 1.1.0~874^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F571%2Fhead;p=teuthology.git tox: Pass --upgrade to pip install Signed-off-by: Zack Cerza --- diff --git a/tox.ini b/tox.ini index dabc4756..4f0ef81f 100644 --- a/tox.ini +++ b/tox.ini @@ -2,6 +2,7 @@ envlist = docs, py27, py27-integration, flake8 [testenv:py27] +install_command = pip install --upgrade {opts} {packages} passenv = HOME sitepackages=True deps= @@ -15,6 +16,7 @@ deps= commands=py.test --cov=teuthology --cov-report=term -v {posargs:teuthology scripts} [testenv:py27-integration] +install_command = pip install --upgrade {opts} {packages} passenv = HOME sitepackages=True deps= @@ -29,11 +31,13 @@ commands=py.test --cov=teuthology --cov-report=term -v {posargs:teuthology/test/ basepython=python2.7 [testenv:flake8] +install_command = pip install --upgrade {opts} {packages} deps= flake8 commands=flake8 --select=F,E9 {posargs:teuthology scripts} [testenv:docs] +install_command = pip install --upgrade {opts} {packages} basepython=python changedir=docs deps=sphinx