summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Lukjanov <slukjanov@mirantis.com>2013-12-13 20:13:11 +0400
committerSergey Lukjanov <slukjanov@mirantis.com>2013-12-13 20:15:00 +0400
commita530d5ed8187fbc613c09fd44584f14c572fe217 (patch)
tree2a842a537173989effd078e46fa107eeda8a4415
parent8e152992d4b634e8e346ee6271bf73f579807306 (diff)
downloadoslosphinx-a530d5ed8187fbc613c09fd44584f14c572fe217.tar.gz
Add -U flag to pip install command
The -U flag makes tox able to upgrade all packages to the newest available version. Change-Id: Ibe5fa0115c2b151ae6f3bd741cc561d2435499e8
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 273252f..0c8d1c7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -5,7 +5,7 @@ envlist = pep8
[testenv]
usedevelop = True
-install_command = pip install {opts} {packages}
+install_command = pip install -U {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
setenv = VIRTUAL_ENV={envdir}