()
| 72 | |
| 73 | @pytest_asyncio.fixture(scope="function") |
| 74 | async def futuresClientAsync(): |
| 75 | client = AsyncClient( |
| 76 | futures_api_key, futures_api_secret, https_proxy=proxy, testnet=testnet |
| 77 | ) |
| 78 | try: |
| 79 | yield client |
| 80 | finally: |
| 81 | await client.close_connection() |
| 82 | |
| 83 | |
| 84 | @pytest_asyncio.fixture(scope="function") |
nothing calls this directly
no test coverage detected
searching dependent graphs…