vdev/commands/integration/
mod.rs

1mod build;
2mod ci_paths;
3mod show;
4mod start;
5mod stop;
6mod test;
7
8crate::cli_subcommands! {
9    r"Manage integration test environments...
10
11These test setups are organized into a set of integrations, located in subdirectories
12`tests/integration`.  For each integration, there is a matrix of environments, described in the
13`matrix` setting in the `test.yaml` file contained in the `config/` subdirectory."
14
15    show,
16    build,
17    start,
18    stop,
19    test,
20    ci_paths,
21}