From 2e0f0aafd9aced1ff7fba047375e6fb6a6ef81e2 Mon Sep 17 00:00:00 2001 From: Yuiko Takada Date: Mon, 15 Jun 2015 10:09:52 +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 fix this problem. See: https://review.openstack.org/#/c/189569 Change-Id: I9f88235c58422c420bbd6ba4a3d8c4a5c60db246 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index ec5db126ee..11325b3433 100644 --- a/tox.ini +++ b/tox.ini @@ -11,6 +11,7 @@ deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = bash tools/pretty_tox.sh '{posargs}' whitelist_externals = bash +passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY [testenv:py33] deps = -r{toxinidir}/requirements-py3.txt