(store: &CommentDataStore, task_id: &str, message: String)
| 552 | } |
| 553 | |
| 554 | async fn mark_task_failed(store: &CommentDataStore, task_id: &str, message: String) { |
| 555 | let _ = store |
| 556 | .transition_comment_task(task_id, COMMENT_STATUS_FAILED, None, Some(message), false) |
| 557 | .await; |
| 558 | } |
| 559 | |
| 560 | #[cfg(test)] |
| 561 | fn parse_runner_output(stdout: &str) -> Result<String> { |
no test coverage detected