From 956314717ddf7012322b1278c15f2cbfa9349380 Mon Sep 17 00:00:00 2001 From: hparekh Date: Thu, 10 Dec 2015 09:17:15 +0900 Subject: [PATCH] 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. Change-Id: I2625f9689d72ea68f8daa1b5e442a75b50fbfa52 Closes-bug: #1524824 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index b3d034fe..07706b80 100644 --- a/tox.ini +++ b/tox.ini @@ -9,6 +9,7 @@ install_command = pip install -U {opts} {packages} setenv = VIRTUAL_ENV={envdir} DISCOVER_DIRECTORY=murano/tests/unit +passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = bash tools/pretty_tox.sh '{posargs}'