(runner)
| 30 | |
| 31 | |
| 32 | async def test_bad_meta_raises_preflight(runner): |
| 33 | import pytest |
| 34 | |
| 35 | from src.workflow.errors import WorkflowMetaError |
| 36 | |
| 37 | with pytest.raises(WorkflowMetaError): |
| 38 | await run_workflow("return 1", runner=runner) |
| 39 | |
| 40 | |
| 41 | async def test_script_runtime_error_is_captured(runner): |
nothing calls this directly
no test coverage detected