parallel_tests 3.12.1 → 3.13.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 362c711acce6411e69e8987e7a32297ef6267072892e81b432040aa327f11283
4
- data.tar.gz: 2d7d90cd55bd36c9cabbd8e4611be6f2880d131a672ba12ee63a3ce75e121e50
3
+ metadata.gz: 63c2880760c8b795a2a94c066a5ae23f78c505f53da40ce5de8c1df4af9b1e7b
4
+ data.tar.gz: 17de345e57e4c7e4fe50853e7abb70729ce6ed0e462afadb4888f04e43968f1e
5
5
  SHA512:
6
- metadata.gz: 21515894c5ea5c24cb947b1b7e7e2cf2494dca58f7b9982cc180f1ab11f74407ea67e3299a2fb5040263580d1a8ed4e89792b4a76eb56f6d067bbda332d99223
7
- data.tar.gz: c2f922c148bd15d7fe4e95d0c75300ffa0cdc013307ef3e7d47c28d81106586f64903b35afaf5fa7ee95f40a2183e9bf87b4113ff472a8ff0ada52bcd014cbc0
6
+ metadata.gz: c137d503fc2ec276aada0a1c1d8308220d3cb639a206fea97d7bad30d34bb911ad914cf4ac87bd8244442cf0ef5f473355f2a440d6bcdf885751af3ae3ec681a
7
+ data.tar.gz: 10e46d3162dad7f87e341fb1cfbcd257857e7dedda21e3805851811c7b81c9e0e952ad6863d307381cf8b8fd8e3f6960148e2dd57ed7091a0d4717dc81a9dd79
@@ -316,12 +316,12 @@ module ParallelTests
316
316
  def extract_file_paths(argv)
317
317
  dash_index = argv.rindex("--")
318
318
  file_args_at = (dash_index || -1) + 1
319
- [argv[file_args_at..-1], argv[0...(dash_index || 0)]]
319
+ [argv[file_args_at..], argv[0...(dash_index || 0)]]
320
320
  end
321
321
 
322
322
  def extract_test_options(argv)
323
323
  dash_index = argv.index("--") || -1
324
- argv[dash_index + 1..-1]
324
+ argv[dash_index + 1..]
325
325
  end
326
326
 
327
327
  def append_test_options(options, argv)
@@ -27,7 +27,7 @@ module ParallelTests
27
27
  example_tags = example.tags.map(&:name)
28
28
  example_tags = scenario_tags + example_tags
29
29
  next unless matches_tags?(example_tags)
30
- example.rows[1..-1].each do |row|
30
+ example.rows[1..].each do |row|
31
31
  test_line = row.source_line
32
32
  next if line_numbers.any? && !line_numbers.include?(test_line)
33
33
 
@@ -57,7 +57,7 @@ module ParallelTests
57
57
  plural = "s" if (word == group) && (number != 1)
58
58
  "#{number} #{word}#{plural}"
59
59
  end
60
- "#{sums[0]} (#{sums[1..-1].join(", ")})"
60
+ "#{sums[0]} (#{sums[1..].join(", ")})"
61
61
  end.compact.join("\n")
62
62
  end
63
63
 
@@ -38,7 +38,7 @@ module ParallelTests
38
38
  # add all files that should run in a multiple isolated processes to their own groups
39
39
  group_features_by_size(items_to_group(single_items), groups[0..(isolate_count - 1)])
40
40
  # group the non-isolated by size
41
- group_features_by_size(items_to_group(items), groups[isolate_count..-1])
41
+ group_features_by_size(items_to_group(items), groups[isolate_count..])
42
42
  else
43
43
  # add all files that should run in a single non-isolated process to first group
44
44
  single_items.each { |item, size| add_to_group(groups.first, item, size) }
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module ParallelTests
3
- VERSION = '3.12.1'
3
+ VERSION = '3.13.0'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parallel_tests
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.12.1
4
+ version: 3.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Grosser
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-12 00:00:00.000000000 Z
11
+ date: 2022-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parallel
@@ -24,7 +24,7 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
- description:
27
+ description:
28
28
  email: michael@grosser.it
29
29
  executables:
30
30
  - parallel_spinach
@@ -68,10 +68,10 @@ licenses:
68
68
  - MIT
69
69
  metadata:
70
70
  bug_tracker_uri: https://github.com/grosser/parallel_tests/issues
71
- documentation_uri: https://github.com/grosser/parallel_tests/blob/v3.12.1/Readme.md
72
- source_code_uri: https://github.com/grosser/parallel_tests/tree/v3.12.1
71
+ documentation_uri: https://github.com/grosser/parallel_tests/blob/v3.13.0/Readme.md
72
+ source_code_uri: https://github.com/grosser/parallel_tests/tree/v3.13.0
73
73
  wiki_uri: https://github.com/grosser/parallel_tests/wiki
74
- post_install_message:
74
+ post_install_message:
75
75
  rdoc_options: []
76
76
  require_paths:
77
77
  - lib
@@ -79,15 +79,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: 2.5.0
82
+ version: 2.6.0
83
83
  required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  requirements:
85
85
  - - ">="
86
86
  - !ruby/object:Gem::Version
87
87
  version: '0'
88
88
  requirements: []
89
- rubygems_version: 3.0.3.1
90
- signing_key:
89
+ rubygems_version: 3.3.3
90
+ signing_key:
91
91
  specification_version: 4
92
92
  summary: Run Test::Unit / RSpec / Cucumber / Spinach in parallel
93
93
  test_files: []