@@ -42,7 +42,6 @@ def on_run_step_done(self, run_step: RunStep) -> None:
42
42
for tool in details .tool_calls :
43
43
if tool .type == "code_interpreter" :
44
44
assert tool .id
45
- assert tool .code_interpreter .outputs
46
45
assert tool .code_interpreter .input is not None
47
46
elif tool .type == "function" :
48
47
assert tool .id
@@ -339,6 +338,7 @@ def test_assistants_messages_crud(self, client, api_type, api_version, **kwargs)
339
338
delete_file = client .files .delete (file .id )
340
339
assert delete_file .deleted is True
341
340
341
+ @pytest .mark .skip ("Entra ID auth not supported yet" )
342
342
@configure
343
343
@pytest .mark .parametrize ("api_type, api_version" , [(ASST_AZURE , PREVIEW ), (GPT_4_OPENAI , "v1" )])
344
344
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
418
418
)
419
419
assert deleted_vector_store .deleted is True
420
420
421
+ @pytest .mark .skip ("Entra ID auth not supported yet" )
421
422
@configure
422
423
@pytest .mark .parametrize ("api_type, api_version" , [(ASST_AZURE , PREVIEW ), (GPT_4_OPENAI , "v1" )])
423
424
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):
533
534
assert delete_thread .id == thread .id
534
535
assert delete_thread .deleted is True
535
536
537
+ @pytest .mark .skip ("Entra ID auth not supported yet" )
536
538
@configure
537
539
@pytest .mark .parametrize ("api_type, api_version" , [(ASST_AZURE , PREVIEW ), (GPT_4_OPENAI , "v1" )])
538
540
def test_assistants_runs_file_search (self , client , api_type , api_version , ** kwargs ):
0 commit comments