Builds a runner around the canonical agent (no workflow wrapper).
(*, failing: bool = False)
| 388 | |
| 389 | |
| 390 | def build_test_runner(*, failing: bool = False) -> TestInMemoryRunner: |
| 391 | """Builds a runner around the canonical agent (no workflow wrapper).""" |
| 392 | return TestInMemoryRunner(node=build_test_agent(failing=failing)) |
| 393 | |
| 394 | |
| 395 | def build_test_workflow(*, failing: bool = False) -> Workflow: |
no test coverage detected