test: handle index error

This commit is contained in:
Krrish Dholakia
2025-02-24 22:11:08 -08:00
parent 142b195784
commit b7ec53aec1
+4 -1
View File
@@ -233,7 +233,10 @@ async def test_aarun_thread_litellm(sync_mode, provider, is_streaming):
assistants = await litellm.aget_assistants(custom_llm_provider=provider)
## get the first assistant ###
assistant_id = assistants.data[0].id
try:
assistant_id = assistants.data[0].id
except IndexError:
pytest.skip("No assistants found")
new_thread = test_create_thread_litellm(sync_mode=sync_mode, provider=provider)