(_headers)
| 162 | # Regression: a non-TransportError httpx error must surface as a typed |
| 163 | # E2AError, not a raw httpx exception. Not retried. |
| 164 | async def make(_headers): |
| 165 | raise httpx.HTTPError("boom") |
| 166 | |
| 167 | with pytest.raises(E2AConnectionError): |
| 168 | await request_with_retry(make, cfg=cfg(), retryable=True, idempotency=False) |
no outgoing calls
no test coverage detected