mongo-python-driver/test/asynchronous/conftest.py
2024-06-06 09:01:24 -07:00

15 lines
290 B
Python

from __future__ import annotations
from test.asynchronous import async_setup, async_teardown
import pytest_asyncio
_IS_SYNC = False
@pytest_asyncio.fixture(scope="session", autouse=True)
async def test_setup_and_teardown():
await async_setup()
yield
await async_teardown()