parallel_tests 2.1.0 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/parallel_tests/cli.rb +1 -1
- data/lib/parallel_tests/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57ca2b28a2624e49afed71bd7432be131379115a
|
4
|
+
data.tar.gz: f6e1a6d3fb6ca9038dde4fcde4d4b07864846726
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b80bc1ae93452d4972f719d418b5ee7af9b536ede9c528a4a29f57fa2dff0d18a0e887363e6d4c97f1818596d63d6452e6814b1ff42bb4adf7f9d367bd5e461
|
7
|
+
data.tar.gz: 243fafe6261e646e46de16493fc5c948f1da41e7e331a0d4ad8f59965be104f9a927c71f192006e27647cd968e3dbb23bd2ef2816b7890864f8a3eb330b2052e
|
data/lib/parallel_tests/cli.rb
CHANGED
@@ -186,7 +186,7 @@ module ParallelTests
|
|
186
186
|
opts.on('--ignore-tags [PATTERN]', 'When counting steps ignore scenarios with tags that match this pattern') { |arg| options[:ignore_tag_pattern] = arg }
|
187
187
|
opts.on("--nice", "execute test commands with low priority.") { options[:nice] = true }
|
188
188
|
opts.on("--runtime-log [PATH]", "Location of previously recorded test runtimes") { |path| options[:runtime_log] = path }
|
189
|
-
opts.on("--allowed-missing", "Allowed percentage of missing runtimes (default = 50)") { |percent| options[:allowed_missing_percent] = percent }
|
189
|
+
opts.on("--allowed-missing [INT]", "Allowed percentage of missing runtimes (default = 50)") { |percent| options[:allowed_missing_percent] = percent }
|
190
190
|
opts.on("--unknown-runtime [FLOAT]", "Use given number as unknown runtime (otherwise use average time)") { |time| options[:unknown_runtime] = time.to_f }
|
191
191
|
opts.on("--verbose", "Print more output") { options[:verbose] = true }
|
192
192
|
opts.on("-v", "--version", "Show Version") { puts ParallelTests::VERSION; exit }
|