(file_path)
| 21 | @pytest.mark.flaky(reruns=3, reruns_delay=2) |
| 22 | async def test_multiple_requests(): |
| 23 | async def file_to_bytes_stream(file_path): |
| 24 | with open(file_path, "rb") as f: |
| 25 | while chunk := f.read(1024): |
| 26 | yield chunk |
| 27 | |
| 28 | resp = await client.post( |
| 29 | "https://httpbin.org/anything", |
no outgoing calls
no test coverage detected