summaryrefslogtreecommitdiff
path: root/tox/config.py
diff options
context:
space:
mode:
authorholger krekel <holger@merlinux.eu>2015-05-12 23:02:11 +0200
committerholger krekel <holger@merlinux.eu>2015-05-12 23:02:11 +0200
commite016c31b467daf8efc9f5fd7e3b4b469cd6f7c94 (patch)
tree2be85b5bc252d1e6559d910f966ddc482a216312 /tox/config.py
parent486fe99bc56acbbb8078bd5aab8bafc9b1dc09a2 (diff)
downloadtox-e016c31b467daf8efc9f5fd7e3b4b469cd6f7c94.tar.gz
also pass PIP_INDEX_URL because it's likely that the user wants to use2.0.0
it with the pip commands that run inside the tox run.
Diffstat (limited to 'tox/config.py')
-rw-r--r--tox/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox/config.py b/tox/config.py
index de45138..5963f13 100644
--- a/tox/config.py
+++ b/tox/config.py
@@ -387,7 +387,7 @@ def tox_addoption(parser):
help="list of X=Y lines with environment variable settings")
def passenv(testenv_config, value):
- passenv = set(["PATH"])
+ passenv = set(["PATH", "PIP_INDEX_URL"])
# we ensure that tmp directory settings are passed on
# we could also set it to the per-venv "envtmpdir"