testing skip internal server errors

This commit is contained in:
Ishaan Jaff 2024-08-08 19:09:46 -07:00 committed by Krrish Dholakia
parent 77e445120b
commit 27cf31a03c

View file

@ -229,6 +229,8 @@ async def test_aimage_generation_vertex_ai(sync_mode):
pass
except litellm.RateLimitError as e:
pass
except litellm.InternalServerError as e:
pass
except litellm.ContentPolicyViolationError:
pass # Azure randomly raises these errors - skip when they occur
except Exception as e: