lib/parallel_tests/cli.rb in parallel_tests-0.11.2 vs lib/parallel_tests/cli.rb in parallel_tests-0.11.3

- old
+ new

@@ -126,9 +126,10 @@ end opts.on("--serialize-stdout", "Serialize stdout output, nothing will be written until everything is done") { options[:serialize_stdout] = true } opts.on("--non-parallel", "execute same commands but do not in parallel, needs --exec") { options[:non_parallel] = true } opts.on("--no-symlinks", "Do not traverse symbolic links to find test files") { options[:symlinks] = false } opts.on('--ignore-tags [PATTERN]', 'When counting steps ignore scenarios with tags that match this pattern') { |arg| options[:ignore_tag_pattern] = arg } + opts.on("--nice", "execute test commands with low priority.") { options[:nice] = true } opts.on("-v", "--version", "Show Version") { puts ParallelTests::VERSION; exit } opts.on("-h", "--help", "Show this.") { puts opts; exit } end.parse!(argv) raise "--group-by found and --single-process are not supported" if options[:group_by] == :found and options[:single_process]