From d8e5938f54eecf1305355ff79b1ffd04dec75048 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 25 Oct 2025 10:35:47 -0700 Subject: [PATCH] test_azure_img_gen_health_check --- tests/litellm_utils_tests/test_health_check.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/litellm_utils_tests/test_health_check.py b/tests/litellm_utils_tests/test_health_check.py index dc034c05fd..4236d0195d 100644 --- a/tests/litellm_utils_tests/test_health_check.py +++ b/tests/litellm_utils_tests/test_health_check.py @@ -85,12 +85,12 @@ async def test_openai_img_gen_health_check(): async def test_azure_img_gen_health_check(): + litellm._turn_on_debug() response = await litellm.ahealth_check( model_params={ "model": "azure/dall-e-3", "api_base": os.getenv("AZURE_API_BASE"), - "api_key": os.getenv("AZURE_API_KEY"), - "api_version": "2023-06-01-preview", + "api_key": os.getenv("AZURE_API_KEY") }, mode="image_generation", prompt="cute baby sea otter", @@ -100,8 +100,6 @@ async def test_azure_img_gen_health_check(): return response -# asyncio.run(test_azure_img_gen_health_check()) - @pytest.mark.skip(reason="AWS Suspended Account") @pytest.mark.asyncio