()
| 135 | @pytest.mark.respx() |
| 136 | def test_env_bearer_does_not_require_botocore(monkeypatch: pytest.MonkeyPatch, respx_mock: MockRouter) -> None: |
| 137 | def load_botocore() -> None: |
| 138 | raise AssertionError("bearer authentication must not import botocore") |
| 139 | |
| 140 | monkeypatch.setattr(bedrock_auth_module, "_load_botocore", load_botocore) |
| 141 | respx_mock.post("https://example.com/openai/v1/responses").mock( |
nothing calls this directly
no test coverage detected