From 36c0debbedf3d54736d6d3c6e16f998ab4921aec Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Thu, 19 Mar 2026 09:34:40 -0400 Subject: [PATCH] Fix asset collection tests by setting asset_globs The Docker and Daytona asset collection tests were failing because asset_globs was empty, causing the engine to skip collection entirely. Co-Authored-By: Claude Opus 4.6 (1M context) --- lib/crates/fabro-workflows/tests/daytona_integration.rs | 2 +- lib/crates/fabro-workflows/tests/integration.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/crates/fabro-workflows/tests/daytona_integration.rs b/lib/crates/fabro-workflows/tests/daytona_integration.rs index 0cc61ef89..885825be7 100644 --- a/lib/crates/fabro-workflows/tests/daytona_integration.rs +++ b/lib/crates/fabro-workflows/tests/daytona_integration.rs @@ -1307,7 +1307,7 @@ async fn daytona_asset_collection() { git_author: fabro_workflows::git::GitAuthor::default(), base_branch: None, pull_request: None, - asset_globs: Vec::new(), + asset_globs: vec!["test-results/**".to_string()], workflow_slug: None, }; diff --git a/lib/crates/fabro-workflows/tests/integration.rs b/lib/crates/fabro-workflows/tests/integration.rs index 7a979835b..23255c202 100644 --- a/lib/crates/fabro-workflows/tests/integration.rs +++ b/lib/crates/fabro-workflows/tests/integration.rs @@ -13388,7 +13388,7 @@ async fn asset_collection_docker_sandbox() { git_author: fabro_workflows::git::GitAuthor::default(), base_branch: None, pull_request: None, - asset_globs: Vec::new(), + asset_globs: vec!["test-results/**".to_string()], workflow_slug: None, };