From 3e14a8d489b8580a621f1a2e2da1b69295d30154 Mon Sep 17 00:00:00 2001 From: Thomas Hardy Date: Mon, 3 Aug 2026 09:50:54 -0400 Subject: [PATCH] bump test timeout --- tests/contrib/openai_agents/test_openai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/contrib/openai_agents/test_openai.py b/tests/contrib/openai_agents/test_openai.py index 23c8939a5..df12685f0 100644 --- a/tests/contrib/openai_agents/test_openai.py +++ b/tests/contrib/openai_agents/test_openai.py @@ -461,7 +461,7 @@ async def test_tool_failure_workflow(client: Client): "What is the weather in Tokio?", id=f"tools-failure-workflow-{uuid.uuid4()}", task_queue=worker.task_queue, - execution_timeout=timedelta(seconds=2), + execution_timeout=timedelta(seconds=30), ) with pytest.raises(WorkflowFailureError) as e: await workflow_handle.result()