(self)
| 818 | client.close() |
| 819 | |
| 820 | def test_base_url_env(self) -> None: |
| 821 | with update_env(ANTHROPIC_BASE_URL="http://localhost:5000/from/env"): |
| 822 | client = Anthropic(api_key=api_key, _strict_response_validation=True) |
| 823 | assert client.base_url == "http://localhost:5000/from/env/" |
| 824 | |
| 825 | @pytest.mark.parametrize( |
| 826 | "client", |
nothing calls this directly
no test coverage detected