From 528fac3d5155815e59563f01a10c6abcc6802006 Mon Sep 17 00:00:00 2001 From: Jesse Szwedko Date: Fri, 7 Jul 2023 16:24:43 -0700 Subject: [PATCH] chore(ci): Fix integration test filter generation (#17914) Each key needs to map to an array. Signed-off-by: Jesse Szwedko Signed-off-by: Jesse Szwedko --- vdev/src/commands/integration/ci_paths.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vdev/src/commands/integration/ci_paths.rs b/vdev/src/commands/integration/ci_paths.rs index 16d3b418ce756..c37b682a2ec7b 100644 --- a/vdev/src/commands/integration/ci_paths.rs +++ b/vdev/src/commands/integration/ci_paths.rs @@ -12,7 +12,7 @@ pub struct Cli {} impl Cli { pub fn exec(&self) -> Result<()> { // placeholder for changes that should run all integration tests - println!("all-int:"); + println!("all-int: []"); // paths for each integration are defined in their respective config files. for (integration, config) in IntegrationTestConfig::collect_all()? {