aboutsummaryrefslogtreecommitdiffstats
path: root/functest
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2019-12-02 07:31:52 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2019-12-02 07:31:52 +0100
commite03d0444b53d1a9eaeadf52f66fb69d35889d768 (patch)
tree687d21d2f07021c37dbc900ce1e519f8381e9512 /functest
parent3b7311af247edfdc3b6aa61b56b3c2afa4722347 (diff)
Return result = 0 if failure in juju_epc
Else it's falsy successfull [1] [1] https://build.opnfv.org/ci/job/airship-opnfv-functest-vnf-latest-juju_epc-run/42/console Change-Id: Ic9f7c37db998904833c90ae3ee912e9908617abd Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest')
-rw-r--r--functest/opnfv_tests/vnf/epc/juju_epc.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/functest/opnfv_tests/vnf/epc/juju_epc.py b/functest/opnfv_tests/vnf/epc/juju_epc.py
index b2dbabdb4..4d7289749 100644
--- a/functest/opnfv_tests/vnf/epc/juju_epc.py
+++ b/functest/opnfv_tests/vnf/epc/juju_epc.py
@@ -384,6 +384,7 @@ class JujuEpc(singlevm.VmReady2):
self.stop_time = time.time()
return self.EX_TESTCASE_FAILED
except Exception: # pylint: disable=broad-except
+ self.result = 0
self.stop_time = time.time()
self.__logger.exception("Exception on VNF testing")
return self.EX_TESTCASE_FAILED