From 898caf57c3913ce73a3dbefa9084064b87265d29 Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Thu, 17 Oct 2019 22:53:21 +0100 Subject: [PATCH] tox: addex SSL proxy variables to passenv Fix tox execution failures from system that are using SSL based http proxies. Related: https://github.com/tox-dev/tox/issues/1437 Signed-off-by: Sorin Sbarnea --- tox.ini | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 0b4aa6c2fe..844b504df4 100644 --- a/tox.ini +++ b/tox.ini @@ -15,7 +15,11 @@ deps = pep8-naming wheel commands = nosetests [] -passenv = HOME +passenv = + CURL_CA_BUNDLE # https proxies, https://github.com/tox-dev/tox/issues/1437 + HOME + REQUESTS_CA_BUNDLE # https proxies + SSL_CERT_FILE # https proxies # recreate = True [testenv:flake8]