()
| 63 | |
| 64 | @pytest_asyncio.fixture(scope="function") |
| 65 | async def clientAsync(): |
| 66 | client = AsyncClient(api_key, api_secret, https_proxy=proxy, testnet=testnet) |
| 67 | try: |
| 68 | yield client |
| 69 | finally: |
| 70 | await client.close_connection() |
| 71 | |
| 72 | |
| 73 | @pytest_asyncio.fixture(scope="function") |
nothing calls this directly
no test coverage detected
searching dependent graphs…