mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-12 12:06:04 +00:00
fix but logs are still noisy oh well
This commit is contained in:
parent
791cc71cce
commit
de3b2caa61
2 changed files with 4 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue