parallel_tests 2.1.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e176cd85e6826766bdf2384b8234228932702e4f
4
- data.tar.gz: a4b36614ab9fb29e56e52e48f0ada93a6fbe9d52
3
+ metadata.gz: 57ca2b28a2624e49afed71bd7432be131379115a
4
+ data.tar.gz: f6e1a6d3fb6ca9038dde4fcde4d4b07864846726
5
5
  SHA512:
6
- metadata.gz: e8b1d312356733a01a44f5376ad3ee5f6cd8a77946b88d1e14af1ece15f97db055ae00f6654f87bb5e1c91ca8eb9b5ee0de29371c0319c27813775c7bc2c7102
7
- data.tar.gz: c41eb3de31f8d17a7a2f35ecb80289106cac9d264eabf915baf265d3e62432f7a33260c7f7943d6a37b5b0dc5450a6fc39ed1039b3de5f6f7666e979a45c8597
6
+ metadata.gz: 8b80bc1ae93452d4972f719d418b5ee7af9b536ede9c528a4a29f57fa2dff0d18a0e887363e6d4c97f1818596d63d6452e6814b1ff42bb4adf7f9d367bd5e461
7
+ data.tar.gz: 243fafe6261e646e46de16493fc5c948f1da41e7e331a0d4ad8f59965be104f9a927c71f192006e27647cd968e3dbb23bd2ef2816b7890864f8a3eb330b2052e
@@ -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 }
@@ -1,3 +1,3 @@
1
1
  module ParallelTests
2
- VERSION = Version = '2.1.0'
2
+ VERSION = Version = '2.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parallel_tests
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Grosser