@@ -94,6 +94,7 @@ async def test_reasoning(client: openai.AsyncOpenAI, model: str):
9494 check_reponse (response , "test_reasoning: " )
9595
9696
97+ @pytest .mark .skip (reason = "https://nvbugs/5753250" )
9798@pytest .mark .asyncio (loop_scope = "module" )
9899async def test_reasoning_effort (client : openai .AsyncOpenAI , model : str ):
99100 for effort in ["low" , "medium" , "high" ]:
@@ -106,6 +107,7 @@ async def test_reasoning_effort(client: openai.AsyncOpenAI, model: str):
106107 check_reponse (response , f"test_reasoning_effort_{ effort } : " )
107108
108109
110+ @pytest .mark .skip (reason = "https://nvbugs/5753250" )
109111@pytest .mark .asyncio (loop_scope = "module" )
110112async def test_chat (client : openai .AsyncOpenAI , model : str ):
111113 response = await client .responses .create (model = model ,
@@ -150,6 +152,7 @@ def get_current_weather(location: str, format: str = "celsius") -> dict:
150152 return {"sunny" : True , "temperature" : 20 if format == "celsius" else 68 }
151153
152154
155+ @pytest .mark .skip (reason = "https://nvbugs/5753250" )
153156@pytest .mark .asyncio (loop_scope = "module" )
154157async def test_tool_calls (client : openai .AsyncOpenAI , model : str ):
155158 if model .startswith ("DeepSeek-R1" ):
@@ -201,6 +204,7 @@ async def test_tool_calls(client: openai.AsyncOpenAI, model: str):
201204 check_tool_calling (response , False , "test_tool_calls: " )
202205
203206
207+ @pytest .mark .skip (reason = "https://nvbugs/5753250" )
204208@pytest .mark .asyncio (loop_scope = "module" )
205209async def test_streaming (client : openai .AsyncOpenAI , model : str ):
206210 stream = await client .responses .create (
@@ -222,6 +226,7 @@ async def test_streaming(client: openai.AsyncOpenAI, model: str):
222226 assert full_reasoning_response
223227
224228
229+ @pytest .mark .skip (reason = "https://nvbugs/5753250" )
225230@pytest .mark .asyncio (loop_scope = "module" )
226231async def test_streaming_tool_call (client : openai .AsyncOpenAI , model : str ):
227232 if model .startswith ("DeepSeek-R1" ):
0 commit comments