Skip to content

Commit 07aacf9

Browse files
committed
chore(ci): Fix integration test filter generation
Each key needs to map to an array. Signed-off-by: Jesse Szwedko <[email protected]>
1 parent 70632b7 commit 07aacf9

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)