Python: Add integration tests for durabletask package (#3317)

* Add integration tests

* Fix flaky test

* Fix env viz

* Fix tests and address feedback
This commit is contained in:
Laveesh Rohra
2026-01-21 14:31:24 -08:00
committed by GitHub
Unverified
parent cd77193742
commit e032133748
19 changed files with 1482 additions and 25 deletions
@@ -440,9 +440,8 @@ class OrchestrationAgentExecutor(DurableAgentExecutor[DurableAgentTask]):
def get_run_request(
self,
message: str,
response_format: type[BaseModel] | None,
enable_tool_calls: bool,
wait_for_response: bool = True,
*,
options: dict[str, Any] | None = None,
) -> RunRequest:
"""Get the current run request from the orchestration context.
@@ -451,9 +450,7 @@ class OrchestrationAgentExecutor(DurableAgentExecutor[DurableAgentTask]):
"""
request = super().get_run_request(
message,
response_format,
enable_tool_calls,
wait_for_response,
options=options,
)
request.orchestration_id = self._context.instance_id
return request