Skip to content

Commit 2d34782

Browse files
committed
fix: add wait for namespace deletion call
1 parent f882a10 commit 2d34782

File tree

1 file changed

+1
-1
lines changed
  • tests/model_registry/model_registry/python_client/signing

1 file changed

+1
-1
lines changed

tests/model_registry/model_registry/python_client/signing/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def installed_tas_operator(admin_client: DynamicClient) -> Generator[None, Any]:
120120
# Ensure namespace exists for Securesign
121121
ns = Namespace(name=SECURESIGN_NAMESPACE)
122122
if ns.exists:
123-
ns.delete()
123+
ns.delete(wait=True)
124124
else:
125125
LOGGER.info(f"TAS operator already installed in {OPENSHIFT_OPERATORS}. Using existing installation.")
126126
yield

0 commit comments

Comments
 (0)