@@ -42,7 +42,6 @@ def on_run_step_done(self, run_step: RunStep) -> None:
4242 for tool in details .tool_calls :
4343 if tool .type == "code_interpreter" :
4444 assert tool .id
45- assert tool .code_interpreter .outputs
4645 assert tool .code_interpreter .input is not None
4746 elif tool .type == "function" :
4847 assert tool .id
@@ -339,6 +338,7 @@ def test_assistants_messages_crud(self, client, api_type, api_version, **kwargs)
339338 delete_file = client .files .delete (file .id )
340339 assert delete_file .deleted is True
341340
341+ @pytest .mark .skip ("Entra ID auth not supported yet" )
342342 @configure
343343 @pytest .mark .parametrize ("api_type, api_version" , [(ASST_AZURE , PREVIEW ), (GPT_4_OPENAI , "v1" )])
344344 def test_assistants_vector_stores_crud (self , client , api_type , api_version , ** kwargs ):
@@ -418,6 +418,7 @@ def test_assistants_vector_stores_crud(self, client, api_type, api_version, **kw
418418 )
419419 assert deleted_vector_store .deleted is True
420420
421+ @pytest .mark .skip ("Entra ID auth not supported yet" )
421422 @configure
422423 @pytest .mark .parametrize ("api_type, api_version" , [(ASST_AZURE , PREVIEW ), (GPT_4_OPENAI , "v1" )])
423424 def test_assistants_vector_stores_batch_crud (self , client , api_type , api_version , ** kwargs ):
@@ -533,6 +534,7 @@ def test_assistants_runs_code(self, client, api_type, api_version, **kwargs):
533534 assert delete_thread .id == thread .id
534535 assert delete_thread .deleted is True
535536
537+ @pytest .mark .skip ("Entra ID auth not supported yet" )
536538 @configure
537539 @pytest .mark .parametrize ("api_type, api_version" , [(ASST_AZURE , PREVIEW ), (GPT_4_OPENAI , "v1" )])
538540 def test_assistants_runs_file_search (self , client , api_type , api_version , ** kwargs ):
0 commit comments