From 0a9bc9eba1ada15ec1a2934f3baa465804f20e76 Mon Sep 17 00:00:00 2001 From: morganrol Date: Wed, 21 Apr 2021 14:45:24 +0200 Subject: [EXCEPTIONS] Distinguish onaptests and onapsdk exception there is no error_message method on onapsdk exception as a consequence we may raise a new excpetion when catching sdk exception leading to the non generation of the report Issue-ID: TEST-332 Signed-off-by: morganrol Change-Id: I42d1413ef142e29eeafdfe701f136ae45b097de4 --- src/onaptests/scenario/clearwater_ims.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/onaptests/scenario/clearwater_ims.py') diff --git a/src/onaptests/scenario/clearwater_ims.py b/src/onaptests/scenario/clearwater_ims.py index 2a035bb..c79e6f7 100644 --- a/src/onaptests/scenario/clearwater_ims.py +++ b/src/onaptests/scenario/clearwater_ims.py @@ -45,9 +45,12 @@ class ClearwaterIms(testcase.TestCase): self.__logger.info("No cleanup requested. Test completed.") self.result = 100 self.stop_time = time.time() - except (OnapTestException, SDKException) as exc: + except OnapTestException as exc: self.result = 0 self.__logger.error(exc.error_message) + except SDKException: + self.result = 0 + self.__logger.error("SDK Exception") finally: self.stop_time = time.time() -- cgit 1.2.3-korg