More updates of agent_status to execution_status (#11642)

Co-authored-by: openhands <openhands@all-hands.dev>
This commit is contained in:
Tim O'Farrell
2025-11-05 12:19:34 -07:00
committed by GitHub
parent 5a8f08b4ef
commit d99c7827d8
18 changed files with 666 additions and 157 deletions

View File

@@ -960,7 +960,7 @@ async def test_delete_v1_conversation_success():
AppConversation,
)
from openhands.app_server.sandbox.sandbox_models import SandboxStatus
from openhands.sdk.conversation.state import AgentExecutionStatus
from openhands.sdk.conversation.state import ConversationExecutionStatus
conversation_uuid = uuid4()
conversation_id = str(conversation_uuid)
@@ -979,7 +979,7 @@ async def test_delete_v1_conversation_success():
sandbox_id='test-sandbox-id',
title='Test V1 Conversation',
sandbox_status=SandboxStatus.RUNNING,
agent_status=AgentExecutionStatus.RUNNING,
execution_status=ConversationExecutionStatus.RUNNING,
session_api_key='test-api-key',
selected_repository='test/repo',
selected_branch='main',
@@ -1183,7 +1183,7 @@ async def test_delete_v1_conversation_with_agent_server():
AppConversation,
)
from openhands.app_server.sandbox.sandbox_models import SandboxStatus
from openhands.sdk.conversation.state import AgentExecutionStatus
from openhands.sdk.conversation.state import ConversationExecutionStatus
conversation_uuid = uuid4()
conversation_id = str(conversation_uuid)
@@ -1202,7 +1202,7 @@ async def test_delete_v1_conversation_with_agent_server():
sandbox_id='test-sandbox-id',
title='Test V1 Conversation',
sandbox_status=SandboxStatus.RUNNING,
agent_status=AgentExecutionStatus.RUNNING,
execution_status=ConversationExecutionStatus.RUNNING,
session_api_key='test-api-key',
selected_repository='test/repo',
selected_branch='main',