forked from phoenix/litellm-mirror
refactor: move all testing to top-level of repo
Closes https://github.com/BerriAI/litellm/issues/486
This commit is contained in:
parent
5403c5828c
commit
3560f0ef2c
213 changed files with 74 additions and 217 deletions
13
tests/local_testing/test_pydantic_namespaces.py
Normal file
13
tests/local_testing/test_pydantic_namespaces.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
import warnings
|
||||
import pytest
|
||||
|
||||
|
||||
def test_namespace_conflict_warning():
|
||||
with warnings.catch_warnings(record=True) as recorded_warnings:
|
||||
warnings.simplefilter("always") # Capture all warnings
|
||||
import litellm
|
||||
|
||||
# Check that no warning with the specific message was raised
|
||||
assert not any(
|
||||
"conflict with protected namespace" in str(w.message) for w in recorded_warnings
|
||||
), "Test failed: 'conflict with protected namespace' warning was encountered!"
|
Loading…
Add table
Add a link
Reference in a new issue