···2727 help = "Skip the first X tests, useful if you have tests that are purely informational"
2828 )]
2929 pub skip: Option<usize>,
3030+ #[arg(
3131+ long = "man-page",
3232+ help = "Print the manpage for this command to stdout"
3333+ )]
3434+ pub man_gen: bool,
3535+ #[arg(
3636+ long = "completions",
3737+ help = "Prints out the completions for the shell specified"
3838+ )]
3939+ pub completions: Option<String>,
3040}