Skip to main content

vdev/commands/e2e/
mod.rs

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