Make sure timeouts do not fire on fast requests.
()
| 1532 | |
| 1533 | |
| 1534 | def test_timeout_passes(): |
| 1535 | """Make sure timeouts do not fire on fast requests.""" |
| 1536 | with ConstantFlightServer() as server, \ |
| 1537 | FlightClient(('localhost', server.port)) as client: |
| 1538 | options = flight.FlightCallOptions(timeout=5.0) |
| 1539 | client.do_get(flight.Ticket(b'ints'), options=options).read_all() |
| 1540 | |
| 1541 | |
| 1542 | def test_read_options(): |
nothing calls this directly
no test coverage detected