Files
litellm/tests/test_litellm/containers
Julio Quinteros Pro 59d3c75462 Fix test_error_handling_integration for parallel test execution
The test was making real API calls instead of using mocks because the
conftest.py reloads litellm at module scope, causing stale module
references. The mock was patching the old reference while the actual
code used the new one.

Fix: Reload litellm.containers.main inside the test to get a fresh
reference to base_llm_http_handler, then re-import create_container
after the reload.
2026-02-15 13:08:47 -03:00
..