(session, url, data)
| 250 | # requests to the app: |
| 251 | |
| 252 | async def send_single_request(session, url, data): |
| 253 | async with session.post(url, json=data) as response: |
| 254 | return await response.json() |
| 255 | |
| 256 | async def send_concurrent_requests(num_requests): |
| 257 | image = np.random.rand(28, 28).tolist() |
no outgoing calls
no test coverage detected