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