From ebfefe61eafab6cabd3f812aa68ec66ae607d309 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Wed, 13 Mar 2024 22:05:16 -0700 Subject: [PATCH] (fix-ci-cd) skip deep infra 429 errors --- litellm/tests/test_streaming.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/tests/test_streaming.py b/litellm/tests/test_streaming.py index 2834b8319..26efe6f89 100644 --- a/litellm/tests/test_streaming.py +++ b/litellm/tests/test_streaming.py @@ -541,6 +541,8 @@ def test_completion_deep_infra_stream(): raise Exception("Empty response received") print(f"completion_response: {complete_response}") except Exception as e: + if "Model busy, retry later" in str(e): + pass pytest.fail(f"Error occurred: {e}")