huskies: merge 1010

This commit is contained in:
dave
2026-05-14 08:07:43 +00:00
parent 4520e0e6f9
commit 13ab97a615
27 changed files with 572 additions and 95 deletions
@@ -27,7 +27,13 @@ impl AgentPool {
/// here as well.
pub(super) async fn assign_pipeline_stages(&self, project_root: &Path, config: &ProjectConfig) {
let stages: [(Stage, PipelineStage); 2] = [
(Stage::Coding { claim: None }, PipelineStage::Coder),
(
Stage::Coding {
claim: None,
plan: Default::default(),
},
PipelineStage::Coder,
),
(Stage::Qa, PipelineStage::Qa),
];
+4 -1
View File
@@ -218,7 +218,10 @@ mod tests {
crate::db::ItemMeta::named("baz"),
);
let items = scan_stage_items(&Stage::Coding { claim: None });
let items = scan_stage_items(&Stage::Coding {
claim: None,
plan: Default::default(),
});
// The global CRDT may contain items from other tests, so check
// that our three items are present and appear in sorted order.
assert!(