aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvitikkan <viktor.tikkanen@nokia.com>2016-04-13 10:05:35 +0300
committervitikkan <viktor.tikkanen@nokia.com>2016-04-13 10:32:10 +0300
commit672af86748a7721fbd08dd26f7ce257364662c02 (patch)
tree67503aa06da01aee4256da6fd996c8dcf09e4c43
parent7321dc092bf9208d7100642e70681e7811fb969c (diff)
Lack of Internet connectivity is not treated as fatal
Implements partly JIRA: FUNCTEST-195 Change-Id: Iacf9216bb549109e07a6cbc9b68c863f17736df4 Signed-off-by: vitikkan <viktor.tikkanen@nokia.com>
-rwxr-xr-xtestcases/config_functest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/testcases/config_functest.py b/testcases/config_functest.py
index 657bf0b43..8edb3edb0 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.")