From: Cédric Ollivier Date: Mon, 2 Dec 2019 06:31:52 +0000 (+0100) Subject: Return result = 0 if failure in juju_epc X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=bf56ca5921fd39afe2753ffc48213f0b2ae21c87;p=functest.git 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 (cherry picked from commit e03d0444b53d1a9eaeadf52f66fb69d35889d768) --- 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