mongo-python-driver/test/conftest.py
2024-10-08 13:52:14 -05:00

31 lines
796 B
Python

from __future__ import annotations
import asyncio
import sys
from test import pytest_conf, setup, teardown
import pytest
_IS_SYNC = True
@pytest.fixture(scope="session")
def event_loop_policy():
# The default asyncio loop implementation on Windows
# has issues with sharing sockets across loops (https://github.com/python/cpython/issues/122240)
# We explicitly use a different loop implementation here to prevent that issue
if sys.platform == "win32":
return asyncio.WindowsSelectorEventLoopPolicy() # type: ignore[attr-defined]
return asyncio.get_event_loop_policy()
@pytest.fixture(scope="session", autouse=True)
def test_setup_and_teardown():
setup()
yield
teardown()
pytest_collection_modifyitems = pytest_conf.pytest_collection_modifyitems