From c6092598a61bbc40918b6373319a2e9b6017eea6 Mon Sep 17 00:00:00 2001 From: Sam Hague Date: Thu, 2 Aug 2018 10:55:06 -0400 Subject: [PATCH] Do not fail on exceptions in suite teardown The exceptions checker can fail during suite teardown if new exceptions are found. This fails all the tests in the suite even though the tests passed. Therefore, just log the exceptions and not fail during suite teardown. Change-Id: I3e3e091bc8058fe969f02b98f8b7dea31e21230a Signed-off-by: Sam Hague --- csit/libraries/OpenStackOperations.robot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csit/libraries/OpenStackOperations.robot b/csit/libraries/OpenStackOperations.robot index b864725760..5c6fd65ab8 100644 --- a/csit/libraries/OpenStackOperations.robot +++ b/csit/libraries/OpenStackOperations.robot @@ -556,7 +556,7 @@ Get Test Teardown Debugs KarafKeywords.Fail If Exceptions Found During Test ${test_name} fail=${fail} Get Suite Debugs - Get Test Teardown Debugs test_name=${SUITE_NAME} + Get Test Teardown Debugs test_name=${SUITE_NAME} fail=False Get Test Teardown Debugs For SFC [Arguments] ${test_name}=${TEST_NAME} -- 2.36.6