feat: add slot for upload strategy
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
@@ -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?;
|
||||
}
|
||||
|
Reference in New Issue
Block a user