diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-07-18 06:27:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-17 18:27:37 -0400 |
commit | e0e26b41016c5bf49f358ce7a285192159599306 (patch) | |
tree | 4b763df36539fce664e3ea474d4ebabc4ace05bb /cli/flags.rs | |
parent | 03ba63e108281231a8bda851941b3dca6e29b510 (diff) |
fix(cli): add help description for test --jobs option (#11415)
Diffstat (limited to 'cli/flags.rs')
-rw-r--r-- | cli/flags.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/flags.rs b/cli/flags.rs index ff3fd7a06..0648c139c 100644 --- a/cli/flags.rs +++ b/cli/flags.rs @@ -1059,6 +1059,7 @@ fn test_subcommand<'a, 'b>() -> App<'a, 'b> { Arg::with_name("jobs") .short("j") .long("jobs") + .help("Number of parallel workers, defaults to # of CPUs when no value is provided. Defaults to 1 when the option is not present.") .min_values(0) .max_values(1) .takes_value(true) |