diff --git a/pyproject.toml b/pyproject.toml index 769f0f8d1..8921ed071 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -329,4 +329,4 @@ classmethod-decorators = ["classmethod", "pydantic.field_validator"] addopts = ["--durations=10"] asyncio_mode = "auto" markers = ["allow_network: Allow network access for specific unit tests"] -filterwarnings = "ignore::DeprecationWarning" \ No newline at end of file +filterwarnings = "ignore::DeprecationWarning" diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py index 5dc59bbb9..2f321ae98 100644 --- a/tests/unit/conftest.py +++ b/tests/unit/conftest.py @@ -9,3 +9,6 @@ def pytest_sessionstart(session) -> None: # Silence common deprecation spam during unit tests. warnings.filterwarnings("ignore", category=DeprecationWarning) warnings.filterwarnings("ignore", category=PendingDeprecationWarning) + + +pytest_plugins = ["tests.unit.fixtures"]