()
| 83 | |
| 84 | @pytest_asyncio.fixture(scope="function") |
| 85 | async def liveClientAsync(): |
| 86 | client = AsyncClient(api_key, api_secret, https_proxy=proxy, testnet=False) |
| 87 | try: |
| 88 | yield client |
| 89 | finally: |
| 90 | await client.close_connection() |
| 91 | |
| 92 | |
| 93 | @pytest.fixture(scope="function") |
nothing calls this directly
no test coverage detected
searching dependent graphs…