From 2a4b3df513a5b5735f15981511fe3b5ab2ace327 Mon Sep 17 00:00:00 2001 From: Dmitriy Alergant Date: Wed, 11 Mar 2026 14:07:02 -0400 Subject: [PATCH] test: prevent pytest responses import shadowing --- tests/test_litellm/llms/__init__.py | 1 + tests/test_litellm/llms/databricks/__init__.py | 1 + tests/test_litellm/llms/github_copilot/__init__.py | 1 + tests/test_litellm/llms/hosted_vllm/__init__.py | 1 + tests/test_litellm/llms/openai/__init__.py | 1 + tests/test_litellm/llms/openrouter/__init__.py | 1 + tests/test_litellm/llms/xai/__init__.py | 1 + 7 files changed, 7 insertions(+) create mode 100644 tests/test_litellm/llms/__init__.py create mode 100644 tests/test_litellm/llms/databricks/__init__.py create mode 100644 tests/test_litellm/llms/github_copilot/__init__.py create mode 100644 tests/test_litellm/llms/hosted_vllm/__init__.py create mode 100644 tests/test_litellm/llms/openai/__init__.py create mode 100644 tests/test_litellm/llms/openrouter/__init__.py create mode 100644 tests/test_litellm/llms/xai/__init__.py diff --git a/tests/test_litellm/llms/__init__.py b/tests/test_litellm/llms/__init__.py new file mode 100644 index 00000000000..ec7fe220d6e --- /dev/null +++ b/tests/test_litellm/llms/__init__.py @@ -0,0 +1 @@ +"""LLM provider tests package.""" diff --git a/tests/test_litellm/llms/databricks/__init__.py b/tests/test_litellm/llms/databricks/__init__.py new file mode 100644 index 00000000000..4c53984ab18 --- /dev/null +++ b/tests/test_litellm/llms/databricks/__init__.py @@ -0,0 +1 @@ +"""Databricks provider tests package.""" diff --git a/tests/test_litellm/llms/github_copilot/__init__.py b/tests/test_litellm/llms/github_copilot/__init__.py new file mode 100644 index 00000000000..d9dc079cf53 --- /dev/null +++ b/tests/test_litellm/llms/github_copilot/__init__.py @@ -0,0 +1 @@ +"""GitHub Copilot provider tests package.""" diff --git a/tests/test_litellm/llms/hosted_vllm/__init__.py b/tests/test_litellm/llms/hosted_vllm/__init__.py new file mode 100644 index 00000000000..fac618db63e --- /dev/null +++ b/tests/test_litellm/llms/hosted_vllm/__init__.py @@ -0,0 +1 @@ +"""Hosted vLLM provider tests package.""" diff --git a/tests/test_litellm/llms/openai/__init__.py b/tests/test_litellm/llms/openai/__init__.py new file mode 100644 index 00000000000..d3e2af92ea0 --- /dev/null +++ b/tests/test_litellm/llms/openai/__init__.py @@ -0,0 +1 @@ +"""OpenAI provider tests package.""" diff --git a/tests/test_litellm/llms/openrouter/__init__.py b/tests/test_litellm/llms/openrouter/__init__.py new file mode 100644 index 00000000000..a0938456652 --- /dev/null +++ b/tests/test_litellm/llms/openrouter/__init__.py @@ -0,0 +1 @@ +"""OpenRouter provider tests package.""" diff --git a/tests/test_litellm/llms/xai/__init__.py b/tests/test_litellm/llms/xai/__init__.py new file mode 100644 index 00000000000..dae30a385dc --- /dev/null +++ b/tests/test_litellm/llms/xai/__init__.py @@ -0,0 +1 @@ +"""xAI provider tests package."""