From 29e5e3c2659fbb5fbed9f62705bc7a362b16a45b Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 12 Jun 2024 21:10:30 -0700 Subject: [PATCH] ci/cd predibase is an unstable provider --- litellm/tests/test_streaming.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/litellm/tests/test_streaming.py b/litellm/tests/test_streaming.py index ac107d28ee3..106d605aed8 100644 --- a/litellm/tests/test_streaming.py +++ b/litellm/tests/test_streaming.py @@ -557,7 +557,13 @@ async def test_completion_predibase_streaming(sync_mode): print(f"complete_response: {complete_response}") except litellm.Timeout as e: pass + except litellm.InternalServerError as e: + pass except Exception as e: + print("ERROR class", e.__class__) + print("ERROR message", e) + print("ERROR traceback", traceback.format_exc()) + pytest.fail(f"Error occurred: {e}")