()
| 181 | |
| 182 | |
| 183 | async def test_send_events_req(): |
| 184 | client = make_client() |
| 185 | total_time = 0 |
| 186 | for _ in range(NUM_BENCHMARK_RUNS): |
| 187 | start_time = time.time() |
| 188 | await client.get_events(QUERY) |
| 189 | execution_time = (time.time() - start_time) * 1000 |
| 190 | total_time += execution_time |
| 191 | print(f"send_events_req time: {format(execution_time, '.9f')}ms") |
| 192 | |
| 193 | |
| 194 | async def test_get_height(): |
no test coverage detected