Pass environment variables of proxy to tox

When a development environment is under a proxy, tox is failed even if
environment variables of the proxy are set.

This patch fixes this problem.

Closes-Bug: #1525115
Change-Id: Iff6d29445cbb88c041c58e87720300ef8ec38265
This commit is contained in:
Ghanshyam 2015-12-11 08:54:43 +09:00 committed by Ghanshyam Mann
parent fb008cd417
commit 2d1513b64a
1 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@ usedevelop = True
install_command = pip install -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'