We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca32468 commit 2303e9eCopy full SHA for 2303e9e
.evergreen/scripts/oidc_tester.py
@@ -87,6 +87,12 @@ def test_oidc_send_to_remote(sub_test_name: str) -> None:
87
88
def teardown_oidc(sub_test_name: str) -> None:
89
target_dir = _get_target_dir(sub_test_name)
90
+ error = None
91
if sub_test_name in K8S_NAMES:
- run_command(f"bash {target_dir}/teardown-pod.sh")
92
+ try:
93
+ run_command(f"bash {target_dir}/teardown-pod.sh")
94
+ except Exception as e:
95
+ error = e
96
run_command(f"bash {target_dir}/teardown.sh")
97
+ if error:
98
+ raise error
0 commit comments