From 2dfe6aad5a93330d9536fc8da5b9234f348d888b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Diemer?= <stephane.diemer@ubicast.eu>
Date: Thu, 12 Jan 2017 11:14:14 +0100
Subject: [PATCH] Ignore proxies in Nginx tests.

---
 tests/test_nginx_status.py | 2 +-
 tests/test_nginx_vhosts.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/test_nginx_status.py b/tests/test_nginx_status.py
index b57dcdb6..882ead41 100755
--- a/tests/test_nginx_status.py
+++ b/tests/test_nginx_status.py
@@ -13,7 +13,7 @@ if not os.path.exists('/etc/nginx'):
 else:
     print('Checking http://127.0.0.1:1080/nginx_status response.')
     try:
-        req = requests.get('http://127.0.0.1:1080/nginx_status', timeout=5)
+        req = requests.get('http://127.0.0.1:1080/nginx_status', proxies={'http': '', 'https': ''}, timeout=5)
         if req.status_code != 200:
             raise Exception('Request failed with status code %s.' % req.status_code)
         if 'Active connections' not in req.text:
diff --git a/tests/test_nginx_vhosts.py b/tests/test_nginx_vhosts.py
index a073846a..b4ae969a 100755
--- a/tests/test_nginx_vhosts.py
+++ b/tests/test_nginx_vhosts.py
@@ -37,7 +37,7 @@ else:
             url = '%s://%s' % ('https' if https else 'http', domain)
             sys.stdout.write('Testing url "%s": ' % url)
             try:
-                req = requests.get(url, verify=False, timeout=10)
+                req = requests.get(url, verify=False, proxies={'http': '', 'https': ''}, timeout=10)
             except Exception as e:
                 code = str(e)
             else:
-- 
GitLab