(runtime_kind: str, message: str)
| 77 | |
| 78 | |
| 79 | def fail_runtime_prepare(runtime_kind: str, message: str) -> Dict[str, Any]: |
| 80 | return _update_status( |
| 81 | runtime_kind, |
| 82 | state="error", |
| 83 | active=False, |
| 84 | message=message, |
| 85 | error=message, |
| 86 | ) |
| 87 | |
| 88 | |
| 89 | def reset_runtime_prepare(runtime_kind: str, message: str = "") -> Dict[str, Any]: |
no test coverage detected