Skip to content

Commit 528fac3

Browse files
authored
chore(ci): Fix integration test filter generation (#17914)
Each key needs to map to an array. Signed-off-by: Jesse Szwedko <[email protected]> Signed-off-by: Jesse Szwedko <[email protected]>
1 parent 1a427ed commit 528fac3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vdev/src/commands/integration/ci_paths.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pub struct Cli {}
1212
impl Cli {
1313
pub fn exec(&self) -> Result<()> {
1414
// placeholder for changes that should run all integration tests
15-
println!("all-int:");
15+
println!("all-int: []");
1616

1717
// paths for each integration are defined in their respective config files.
1818
for (integration, config) in IntegrationTestConfig::collect_all()? {

0 commit comments

Comments
 (0)