parallel_rspec 2.2.0 → 2.3.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: 6d2e2199456f48d4b9726672b0c5e223b536350826d46b1bc14ff28e5d83ef45
4
- data.tar.gz: ae4b625e1041147f8e6c4087196fe34bb97977fb0034549e9436b4056363f184
3
+ metadata.gz: c7a38c7f6a685aef852543e1c676aae48e0066fd98f5b6b51c3ca44ca1b8b3b0
4
+ data.tar.gz: 98b98c46b8ef5f8b60066a838b9e58b2df26cd2501086c86d2d7966adb2972cc
5
5
  SHA512:
6
- metadata.gz: a27c85ac8cc1ef08b04ac61054848eeed0dfbe08465fd4814d0a6909dd18891df71d7bbe9011f2fe0281a028bdd62550988d2716f707d3ea1a11d12139d67772
7
- data.tar.gz: 584531e1f3027132097cebb1a36e600ae7e470ce62b91bc23522352dc39f14a7c1c80b34b92a1c5298bbdb079fb51c1204962945577c6cdf549e14dd944f8a22
6
+ metadata.gz: 79ab6a5abf73b8c8a788dd45626aa22d25284af00c4146ef9fa0a174adb7d1c648f5fde0399ecbca5f6103df17bd70c389ee22a9b05e88da9a98a463ee39ca21
7
+ data.tar.gz: 31d2d263fa915de652ce0e990b23387d3946ee1d72d265ba3ec8242a6b483cc2b0d095e02b803614a94ce5bd00a363c74714d147ddb66da2c2bef60e892d52a0
data/CHANGES.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.3.0
4
+
5
+ * Increase default workers from 2 to 4.
6
+ * Fix behavioral inconsistency with rspec-core in nested describe blocks on helper methods with clashing let methods.
7
+
3
8
  ## 2.2.0
4
9
 
5
10
  * Fix incompatibility with `rspec --profile`.
data/README.md CHANGED
@@ -28,9 +28,9 @@ This version of ParallelRSpec has been tested with RSpec 3.12.
28
28
 
29
29
  ## Usage
30
30
 
31
- By default, ParallelRSpec will use two workers. If you would like to use more, set an environment variable:
31
+ By default, ParallelRSpec will use four workers. If you would like to use more, set an environment variable:
32
32
 
33
- $ export WORKERS=4
33
+ $ export WORKERS=8
34
34
 
35
35
  ParallelRSpec runs each worker with its own copy of the test database to avoid locking and deadlocking problems. To create these and populate them with your schema, run:
36
36
 
@@ -59,7 +59,7 @@ By default, there's a task called `parallel_rspec` which will run all specs. To
59
59
  require 'parallel_rspec'
60
60
 
61
61
  ParallelRSpec::RakeTask.new(:prspec) do |t|
62
- ENV['WORKERS'] = '4'
62
+ ENV['WORKERS'] = '8'
63
63
  t.pattern = "spec/**/*_spec.rb"
64
64
  t.rspec_opts = "--tag parallel"
65
65
  # etc...
@@ -77,6 +77,7 @@ module ParallelRSpec
77
77
  while next_example = client.next_example_to_run
78
78
  example_group, example_index = *next_example
79
79
  example = RSpec.world.filtered_examples[example_group][example_index]
80
+ example_group.parent_groups.reverse_each { |parent_group| parent_group.new("dummy instance to trigger helper loading order") }
80
81
  example_group_instance = example_group.new(example.inspect_output)
81
82
  success = example.run(example_group_instance, client) && success
82
83
  end
@@ -1,3 +1,3 @@
1
1
  module ParallelRSpec
2
- VERSION = "2.2.0"
2
+ VERSION = "2.3.0"
3
3
  end
@@ -2,7 +2,7 @@ module ParallelRSpec
2
2
  class Workers
3
3
  def self.number_of_workers
4
4
  workers = ENV['WORKERS'].to_i
5
- workers = 2 if workers.zero?
5
+ workers = 4 if workers.zero?
6
6
  workers
7
7
  end
8
8
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parallel_rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Will Bryant, Powershop New Zealand Ltd
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-02 00:00:00.000000000 Z
11
+ date: 2023-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake