mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-05 08:10:39 +00:00
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) <noreply@anthropic.com>
This commit is contained in:
parent
f0eaec9c55
commit
36c0debbed
2 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue