1313
1414class TestFunctionCallAgent (unittest .IsolatedAsyncioTestCase ):
1515
16+ @pytest .mark .skip
1617 async def test_prompt (self ):
1718 """Test the prompt building functionality of FunctionCall agent."""
1819 agent = FunctionCall (
@@ -25,6 +26,7 @@ async def test_prompt(self):
2526 self .assertTrue ("What's the weather in San Francisco now?" in prompt )
2627 await agent .cleanup ()
2728
29+ @pytest .mark .skip
2830 async def test_tool_conversion (self ):
2931 """Test MCP tools to function call conversion."""
3032 agent = FunctionCall (
@@ -52,6 +54,7 @@ async def test_tool_conversion(self):
5254
5355 await agent .cleanup ()
5456
57+ @pytest .mark .skip
5558 async def test_function_name_parsing (self ):
5659 """Test function name parsing functionality."""
5760 agent = FunctionCall (
@@ -81,6 +84,7 @@ async def test_function_name_parsing(self):
8184
8285 await agent .cleanup ()
8386
87+ @pytest .mark .skip
8488 async def test_configuration (self ):
8589 """Test FunctionCall configuration."""
8690 config = {
@@ -107,6 +111,7 @@ async def test_configuration(self):
107111
108112 await agent .cleanup ()
109113
114+ @pytest .mark .skip
110115 async def test_history_management (self ):
111116 """Test conversation history management."""
112117 agent = FunctionCall (
@@ -229,6 +234,7 @@ async def test_execute_multi_server(self):
229234 await agent .cleanup ()
230235 pprint .pprint (tracer .get_trace ())
231236
237+ @pytest .mark .skip
232238 async def test_tool_calls_with_content (self ):
233239 """Test that agent can handle responses with both tool_calls and content (e.g., GPT-5)."""
234240 print ("Testing FunctionCall agent with both tool_calls and content..." )
0 commit comments