testing skip internal server errors

This commit is contained in:
Ishaan Jaff 2024-08-08 19:09:46 -07:00
parent 3507211518
commit 015b2ee7d9

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: