summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2014-10-11 10:44:20 -0400
committerDoug Hellmann <doug@doughellmann.com>2014-10-11 10:44:20 -0400
commit118885e4b05408eaa4c40d1edf71c04df766da2c (patch)
tree01f49d4b9e1372b023c6c6ca9e1802f6e4723c0f
parentc8bbab8ee62574a0cb007ba02258ef9090defa0f (diff)
downloadoslotest-118885e4b05408eaa4c40d1edf71c04df766da2c.tar.gz
Set install_command in tox to avoid pre-releases
tox (lovingly) uses the --pre option with pip. We don't want that, so override the install_command with a version that doesn't include it. Change-Id: I0b8e48488d5c138c0aac85df2336b2340d7c59c4 Closes-Bug: #1379998
-rw-r--r--tox.ini1
1 files changed, 1 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 439b175..82def82 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,6 +3,7 @@ distribute = False
envlist = py33,py34,py26,py27,pep8
[testenv]
+install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt