fix but logs are still noisy oh well

This commit is contained in:
Ashwin Bharambe 2025-10-16 09:45:14 -07:00
parent 791cc71cce
commit de3b2caa61
2 changed files with 4 additions and 1 deletions

View file

@ -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"
filterwarnings = "ignore::DeprecationWarning"

View file

@ -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"]