diff --git a/tests/test_litellm/llms/anthropic/experimental_pass_through/adapters/test_handler_output_config_passthrough.py b/tests/test_litellm/llms/anthropic/experimental_pass_through/adapters/test_handler_output_config_passthrough.py index 02d0549a0aa..fabc83296f5 100644 --- a/tests/test_litellm/llms/anthropic/experimental_pass_through/adapters/test_handler_output_config_passthrough.py +++ b/tests/test_litellm/llms/anthropic/experimental_pass_through/adapters/test_handler_output_config_passthrough.py @@ -25,12 +25,6 @@ Tests cover (consolidating PRs #23706 and #22727): the fallback inference path from being exercised). """ - - -# Anchor sys.path to this file's location — not the working-directory-relative -# pattern Greptile flagged on PR #23706. Resolves correctly regardless of -# where pytest is invoked from. - from litellm.llms.anthropic.experimental_pass_through.adapters.handler import ( ANTHROPIC_ONLY_REQUEST_KEYS, LiteLLMMessagesToCompletionTransformationHandler, diff --git a/tests/test_litellm/proxy/proxy_server/conftest.py b/tests/test_litellm/proxy/proxy_server/conftest.py index 0a37a9356dc..a90b649dbc6 100644 --- a/tests/test_litellm/proxy/proxy_server/conftest.py +++ b/tests/test_litellm/proxy/proxy_server/conftest.py @@ -14,12 +14,6 @@ from unittest.mock import AsyncMock, MagicMock import pytest -# Repo root, anchored to this file (not CWD) so the path is correct no -# matter where pytest is invoked from. With the project installed via -# uv this is defensive — `litellm` already resolves through site-packages -# — but it lets the harness work in editable-source layouts too. - - # --------------------------------------------------------------------------- # normalize() — used by every dict-equality assertion to scrub volatile fields # ---------------------------------------------------------------------------