From 9b2017a8a46fe898ae2ab7477b2a64d35ca4bfd8 Mon Sep 17 00:00:00 2001 From: Amit Kumar Date: Thu, 3 Aug 2023 20:30:38 +0100 Subject: [PATCH] minor cleanups --- tests/tests_integration/deployment_fixtures.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/tests_integration/deployment_fixtures.py b/tests/tests_integration/deployment_fixtures.py index c4ab1f838..eda462781 100644 --- a/tests/tests_integration/deployment_fixtures.py +++ b/tests/tests_integration/deployment_fixtures.py @@ -151,8 +151,12 @@ def deploy(request): def _destroy(config): - verify(config) - return destroy_configuration(config) + try: + return destroy_configuration(config) + except Exception as e: + logger.exception(e) + logger.info("Destroy failed!") + raise def on_cloud(param=None):