From 6a367192702dbbe167a80b597f98ae2c85ba069e Mon Sep 17 00:00:00 2001 From: caballeto Date: Thu, 11 Jun 2026 16:59:23 +0200 Subject: [PATCH] test: exercise api_keys.get in the SDK parity harness The api_keys.get method shipped in #41 but the parity harness runner (tests/run_sdk.py) had no dispatch case for it, so the monorepo harness-completeness check flagged sdk-python as not covering api-keys.get. Wire the op through to client.api_keys.get. Co-authored-by: Cursor --- tests/run_sdk.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/run_sdk.py b/tests/run_sdk.py index 02419f0..ee6bacb 100644 --- a/tests/run_sdk.py +++ b/tests/run_sdk.py @@ -259,6 +259,8 @@ def run(client: Devhelm, resource: str, action: str, rest: list[str]) -> Any: # # -- API Keys -- if op == "api-keys.list": return client.api_keys.list() + if op == "api-keys.get": + return client.api_keys.get(rest[0]) if op == "api-keys.create": return client.api_keys.create(_parse(CreateApiKeyRequest, rest[0])) if op == "api-keys.revoke":