MCPcopy Create free account
hub / github.com/enviodev/hypersync-client-python / test_send_req

Function test_send_req

test.py:153–161  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

151
152
153async 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
164async def test_send_req_arrow():

Callers 1

mainFunction · 0.85

Calls 2

make_clientFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected