MCPcopy Create free account
hub / github.com/anthropics/anthropic-sdk-python / client

Function client

tests/conftest.py:35–41  ·  view source on GitHub ↗
(request: FixtureRequest)

Source from the content-addressed store, hash-verified

33
34@pytest.fixture(scope="session")
35def client(request: FixtureRequest) -> Iterator[Anthropic]:
36 strict = getattr(request, "param", True)
37 if not isinstance(strict, bool):
38 raise TypeError(f"Unexpected fixture parameter type {type(strict)}, expected {bool}")
39
40 with Anthropic(base_url=base_url, api_key=api_key, _strict_response_validation=strict) as client:
41 yield client
42
43
44@pytest.fixture(scope="session")

Callers

nothing calls this directly

Calls 1

AnthropicClass · 0.90

Tested by

no test coverage detected