From e6f31981f3be83b5fa9b8dbeaecf98512709a6b6 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Wed, 11 Dec 2013 08:50:02 -0800 Subject: [PATCH] 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: I5a57debd5c4bc03e6d00d3801be614d9b895c508 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 8d4a6023..0faf31af 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ skipsdist = True [testenv] usedevelop = True -install_command = pip install {opts} {packages} +install_command = pip install -U {opts} {packages} setenv = LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=C