Skip to content

Commit bf5a97b

Browse files
committed
test(agents): mark unsupported nested agent tests as xfail
Change-Id: I90c1e8a958765cb9b01f57c1bb9c19de395dc4b1
1 parent d7de2f7 commit bf5a97b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/unittests/agents/test_llm_agent_interruptions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ def transfer_to_child(tool_context: ToolContext) -> str:
231231
# Then it should complete successfully
232232
assert any('Child final answer' in t for t in text_parts(resume_events))
233233

234+
@pytest.mark.xfail(reason='Task agent as subagent not supported yet.')
234235
async def test_task_child_agent_interrupt_and_resume(self):
235236
"""Task child agent yields on LRO and resumes successfully.
236237
@@ -296,7 +297,7 @@ def transfer_to_child(tool_context: ToolContext) -> str:
296297
# Then it should complete successfully
297298
assert any('Parent final answer' in t for t in text_parts(resume_events))
298299

299-
@pytest.mark.xfail(reason='_SingleTurnAgentTool swallows interruptions.')
300+
@pytest.mark.xfail(reason='Single-turn agent as subagent not supported yet.')
300301
async def test_single_turn_child_agent_interrupt_and_resume(self):
301302
"""Single-turn child agent yields on LRO and resumes successfully.
302303

0 commit comments

Comments
 (0)