litellm/tests/openai_endpoints_tests
ryan-crabbe-berri e9d40a8f73 test: enforce F811 so a duplicate definition cannot silently replace the first
A name bound twice keeps only the second binding. In `tests/` that is nearly
always a repeated import, harmless but misleading, and the same rule is what
catches the cases that are not harmless: a local that shadows an import the
module still calls, and a second `def test_x` that quietly replaces the first.

311 of the 344 sites were repeated imports and came out with ruff's own fix.
The remaining 33 needed a decision. Four modules imported a name they never
used because a local definition below already shadowed it. Two comprehensions
bound `call` over `unittest.mock.call`, which those modules import and use.
One test rebound the two module handles its nested reload closure had captured.
One class attribute shadowed an unused `status` import.

The load-test fixtures move to a conftest, which is how pytest is meant to share
them, so the test module no longer imports three fixture names it never calls.
The nine `prisma_client` parameters keep a narrow `noqa`: pytest resolves that
fixture by name before the body runs, so the parameter never shadows anything.
2026-08-21 12:06:19 -07:00
..
bedrock_batch_completions.jsonl test fix us.anthropic.claude-haiku-4-5-20251001-v1:0 (#24931) 2026-04-01 11:01:03 -07:00
input.jsonl rename folder to test openai endpoints 2025-03-13 15:13:48 -07:00
input_azure.jsonl [Feat] Add support for returning images with gemini/gemini-2.5-flash-image-preview with /chat/completions (#13983) 2025-08-27 16:16:19 -07:00
openai_batch_completions.jsonl rename folder to test openai endpoints 2025-03-13 15:13:48 -07:00
openai_fine_tuning.jsonl rename folder to test openai endpoints 2025-03-13 15:13:48 -07:00
out.jsonl rename folder to test openai endpoints 2025-03-13 15:13:48 -07:00
out_azure.jsonl rename folder to test openai endpoints 2025-03-13 15:13:48 -07:00
test_batch_rate_limiting_integration.jsonl [Feat] Add support for Batch API Rate limiting - PR1 adds support for input based rate limits (#16075) 2025-10-29 18:28:52 -07:00
test_bedrock_batches_api.py style: run black formatter on files from main merge 2026-04-17 13:02:59 -07:00
test_e2e_openai_responses_api.py test(lint): ban blind pytest.raises(Exception) with ruff B017 (#37731) 2026-08-20 18:09:42 -07:00
test_openai_batches_endpoint.py test: enforce F811 so a duplicate definition cannot silently replace the first 2026-08-21 12:06:19 -07:00
test_openai_files_endpoints.py E2E test to assert response headers from the openai files change 2026-04-10 18:45:00 +00:00
test_openai_fine_tuning.py chore(ci): modernize model references in tests and configs (#27856) 2026-05-15 15:44:28 -07:00
test_responses_websocket_proxy_e2e.py chore(ci): modernize model references in tests and configs (#27856) 2026-05-15 15:44:28 -07:00