vdev/commands/compose_tests/
ci_paths.rs

1use anyhow::Result;
2
3use crate::testing::config::ComposeTestConfig;
4
5pub(crate) fn exec(path: &str) -> Result<()> {
6    // paths for each integration are defined in their respective config files.
7    for (test_name, config) in ComposeTestConfig::collect_all(path)? {
8        if let Some(paths) = config.paths {
9            println!("{test_name}:");
10            for path in paths {
11                println!("- {path:?}");
12            }
13        }
14    }
15
16    Ok(())
17}