aboutsummaryrefslogtreecommitdiffstats
path: root/sfc/tests/functest/sfc_symmetric_chain.py
diff options
context:
space:
mode:
authorBill Morrisson <billmorrissonjr@gmail.com>2018-06-14 12:48:27 +0000
committerspiritus72 <billmorrissonjr@gmail.com>2018-06-15 11:19:40 +0100
commita199aaa6ab6b824262adec66ce5190832f7ce140 (patch)
tree1ad405c9300050ed054bfbd40ad63a2d733c3ad0 /sfc/tests/functest/sfc_symmetric_chain.py
parent8a3233fe8ecc6f3f6af2b32613c09938d74e6053 (diff)
Fix "Remove the annoying WARNINGS when using XCI"
When executing the SFC tests in XCI, we constantly get a whole bunch of annoying "InsecureRequestWarning" messages which does not allow to follow what is going on in the test. This patch filters all those errors leaving the output of the functest results clean. Change-Id: I3bd9519676222d00ee4a2c8d47084737cd9768aa Signed-off-by: Bill Morrisson <billmorrissonjr@gmail.com>
Diffstat (limited to 'sfc/tests/functest/sfc_symmetric_chain.py')
-rw-r--r--sfc/tests/functest/sfc_symmetric_chain.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/sfc/tests/functest/sfc_symmetric_chain.py b/sfc/tests/functest/sfc_symmetric_chain.py
index b1400a71..7d6b4c15 100644
--- a/sfc/tests/functest/sfc_symmetric_chain.py
+++ b/sfc/tests/functest/sfc_symmetric_chain.py
@@ -12,6 +12,8 @@ import os
import sys
import threading
import logging
+import urllib3
+
import sfc.lib.openstack_utils as os_sfc_utils
import sfc.lib.odl_utils as odl_utils
import sfc.lib.config as sfc_config
@@ -178,6 +180,9 @@ def wait_for_classification_rules(ovs_logger, compute_nodes,
if __name__ == '__main__':
+ # Disable InsecureRequestWarning errors when executing the SFC tests in XCI
+ urllib3.disable_warnings()
+
TESTCASE_CONFIG = sfc_config.TestcaseConfig('sfc_symmetric_chain')
supported_installers = ['fuel', 'apex', 'osa', 'compass']
vnf_names = ['testVNF1']