def clear_environment():
delete_deploy_job() # could throw an exception
delete_filler_job() # could throw an exception
delete_project() # could throw an exception
delete_pods() # could throw an exception
I need all these functions to execute, even if one of them throws an exception
Which is the best approach for this ?
Thanks in advance