summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJames E. Blair <jeblair@openstack.org>2013-12-11 09:20:26 -0800
committerJames E. Blair <jeblair@openstack.org>2013-12-11 09:20:43 -0800
commit4ff4a5c9f5b006cc439efa200f85b0f24c72bf23 (patch)
treee45602f8d9bd2ab1cf48136dd13197f2155d500d /tox.ini
parent6d7d677f3eaad2152dfc1210056bbe59e69ce92a (diff)
downloadpython-neutronclient-4ff4a5c9f5b006cc439efa200f85b0f24c72bf23.tar.gz
Add -U to pip install command in tox.ini
Ask pip to upgrade packages in the virtualenv so that a long-lived virtualenv is still kept up to date as external dependencies change. Change-Id: I0256cf4cc3aa7675956762dcf056e2709d36813a
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 26462e7..807b8c7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -9,7 +9,7 @@ setenv = VIRTUAL_ENV={envdir}
LANGUAGE=en_US:en
LC_ALL=C
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
commands = python setup.py testr --testr-args='{posargs}'