aboutsummaryrefslogtreecommitdiffstats
path: root/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py
diff options
context:
space:
mode:
Diffstat (limited to 'sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py')
-rw-r--r--sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py b/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py
index 7a65f548..29441c63 100644
--- a/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py
+++ b/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py
@@ -10,6 +10,8 @@
import threading
import logging
+import urllib3
+
import sfc.lib.odl_utils as odl_utils
import sfc.lib.config as sfc_config
from sfc.tests.functest import sfc_parent_function
@@ -110,6 +112,9 @@ class SfcTwoChainsSSHandHTTP(sfc_parent_function.SfcCommonTestCase):
if __name__ == '__main__':
+ # Disable InsecureRequestWarning errors when executing the SFC tests in XCI
+ urllib3.disable_warnings()
+
TESTCASE_CONFIG = sfc_config.TestcaseConfig('sfc_two_chains_SSH_and_HTTP')
supported_installers = ['fuel', 'apex', 'osa', 'compass']
vnf_names = ['testVNF1', 'testVNF2']