From de3b2caa61c584b3031165878a5eff46388c12f5 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Thu, 16 Oct 2025 09:45:14 -0700 Subject: [PATCH] fix but logs are still noisy oh well --- pyproject.toml | 2 +- tests/unit/conftest.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) 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"]