Skip to content

Commit

Permalink
minor cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Aug 3, 2023
1 parent 091b785 commit 9b2017a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/tests_integration/deployment_fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 9b2017a

Please sign in to comment.