diff options
author | James E. Blair <jeblair@openstack.org> | 2013-12-11 09:20:26 -0800 |
---|---|---|
committer | James E. Blair <jeblair@openstack.org> | 2013-12-11 09:20:43 -0800 |
commit | 4ff4a5c9f5b006cc439efa200f85b0f24c72bf23 (patch) | |
tree | e45602f8d9bd2ab1cf48136dd13197f2155d500d /tox.ini | |
parent | 6d7d677f3eaad2152dfc1210056bbe59e69ce92a (diff) | |
download | python-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.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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}' |