feat: add slot for upload strategy
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-05-25 21:34:09 +02:00
parent b980ac949e
commit cdae730c6b
2 changed files with 30 additions and 2 deletions

View File

@@ -1,6 +1,9 @@
use std::{cmp::Ordering, collections::HashMap, path::Path};
use cuddle_clusters::{process::ProcessOpts, ConcreteComponent, IntoComponent};
use cuddle_clusters::{
process::{NoUploadStrategy, ProcessOpts},
ConcreteComponent, IntoComponent,
};
use walkdir::DirEntry;
pub(crate) async fn run_test_with_components(
@@ -29,6 +32,7 @@ pub(crate) async fn run_test_with_components(
output: actual.clone(),
variables: HashMap::default(),
},
None::<NoUploadStrategy>,
)
.await?;
@@ -40,6 +44,7 @@ pub(crate) async fn run_test_with_components(
output: expected.clone(),
variables: HashMap::default(),
},
None::<NoUploadStrategy>,
)
.await?;
}