(*args, **kwargs)
| 161 | # Root helper re-fetched at call time so test monkeypatching of |
| 162 | # `specify_cli._require_specify_project` keeps working after the move. |
| 163 | def _require_specify_project(*args, **kwargs): |
| 164 | from .. import _require_specify_project as _f |
| 165 | |
| 166 | project_root = _f(*args, **kwargs) |
| 167 | _reject_unsafe_workflow_storage(project_root) |
| 168 | return project_root |
| 169 | |
| 170 | |
| 171 | def _workflow_run_payload(state: Any) -> dict[str, Any]: |
no test coverage detected