From: vitikkan Date: Wed, 13 Apr 2016 07:05:35 +0000 (+0300) Subject: Lack of Internet connectivity is not treated as fatal X-Git-Tag: 0.2~1607 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=672af86748a7721fbd08dd26f7ce257364662c02;p=functest-xtesting.git Lack of Internet connectivity is not treated as fatal Implements partly JIRA: FUNCTEST-195 Change-Id: Iacf9216bb549109e07a6cbc9b68c863f17736df4 Signed-off-by: vitikkan --- diff --git a/testcases/config_functest.py b/testcases/config_functest.py index 657bf0b4..8edb3edb 100755 --- a/testcases/config_functest.py +++ b/testcases/config_functest.py @@ -87,8 +87,7 @@ def action_start(): Start the functest environment installation """ if not functest_utils.check_internet_connectivity(): - logger.error("There is no Internet connectivity. Please check the network configuration.") - exit(-1) + logger.info("No Internet connectivity. This may affect some test case suites.") if action_check(): logger.info("Functest environment already installed. Nothing to do.")