()
| 151 | |
| 152 | |
| 153 | async def test_send_req(): |
| 154 | client = make_client() |
| 155 | total_time = 0 |
| 156 | for _ in range(NUM_BENCHMARK_RUNS): |
| 157 | start_time = time.time() |
| 158 | await client.get(QUERY) |
| 159 | execution_time = (time.time() - start_time) * 1000 |
| 160 | total_time += execution_time |
| 161 | print(f"send_req time: {format(execution_time, '.9f')}ms") |
| 162 | |
| 163 | |
| 164 | async def test_send_req_arrow(): |
no test coverage detected