(self, _request: object)
| 256 | |
| 257 | class FakeCredentials: |
| 258 | def refresh(self, _request: object) -> None: |
| 259 | raise AssertionError("should not be reached: building the request needs google-auth") |
| 260 | |
| 261 | with pytest.raises(MissingDependencyError, match=r"anthropic\[vertex\]"): |
| 262 | refresh_auth(cast(Any, FakeCredentials())) |
no outgoing calls
no test coverage detected