parallel_tests 5.0.0 → 5.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2f8210b7a13ef9c5963815803bf4223010576100b0ea49c7350ef049f05983e1
4
- data.tar.gz: dc327141be25d0e5558366656c4024f9302ae0df49793366d85fd07ddf30963a
3
+ metadata.gz: 1d04fd718102f98ae357210ac15e12dc0745969ac230c261941221f68dfc8201
4
+ data.tar.gz: 0f8e49adef0335f411981e477753d179cae21edd362f7e4300f70ca44c38e9a0
5
5
  SHA512:
6
- metadata.gz: 6a38574598529a0f7307c062a3e3d07b4e5b14924ad97280a03d96f6e7742035541b5e728600c7885e815c78fd193c6bd69c56af8c6bc0878df074f87883e6af
7
- data.tar.gz: 0c4bc740fed525235b6bb79d15a6c24e1d08252691616eb331525e3125b8048e0ba50fc6896268c6f185d880f5fba548cbb4ebe61250d4f45b4c65a12d169bc5
6
+ metadata.gz: 99665f61698d8b9276095d79e47396a39b10b2bb4f961fa8cfe5b6af7fe9946e6cb2b9c72d31681269614f2679e6c2a3f9e61869d01c3cc1321a94dd4630a9df
7
+ data.tar.gz: 98945c86effc0cb8b322f6986cec7782254267a8e8142e2845a45183483f5677ed60e517c5cf7e2979797abae99ef82d80be4a7042841f6354a77c46ef7cbb67
data/Readme.md CHANGED
@@ -335,7 +335,12 @@ TIPS
335
335
  e.g. `config.cache_store = ..., namespace: "test_#{ENV['TEST_ENV_NUMBER']}"`
336
336
  - Debug errors that only happen with multiple files using `--verbose` and [cleanser](https://github.com/grosser/cleanser)
337
337
  - `export PARALLEL_TEST_PROCESSORS=13` to override default processor count
338
- - `export PARALLEL_TEST_MULTIPLE=.5` to override default processor multiplier
338
+ - `export ## 4.20.0 - 2025-02-28
339
+
340
+ ### Added
341
+
342
+ PARALLEL_TEST_MULTIPLY_PROCESSES
343
+ =.5` to override default processor multiplier
339
344
  - Shell alias: `alias prspec='parallel_rspec -m 2 --'`
340
345
  - [Spring] Add the [spring-commands-parallel-tests](https://github.com/DocSpring/spring-commands-parallel-tests) gem to your `Gemfile` to get `parallel_tests` working with Spring.
341
346
  - `--first-is-1` will make the first environment be `1`, so you can test while running your full suite.<br/>
@@ -20,7 +20,7 @@ module ParallelTests
20
20
 
21
21
  # Add our own handler
22
22
  config.on_event :test_run_finished do
23
- return if @failures.empty?
23
+ next if @failures.empty?
24
24
 
25
25
  lock_output do
26
26
  @failures.each do |file, lines|
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module ParallelTests
3
- VERSION = '5.0.0'
3
+ VERSION = '5.0.1'
4
4
  end
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parallel_tests
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0
4
+ version: 5.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Grosser
8
+ autorequire:
8
9
  bindir: bin
9
10
  cert_chain: []
10
- date: 2025-03-01 00:00:00.000000000 Z
11
+ date: 2025-03-05 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: parallel
@@ -23,6 +24,7 @@ dependencies:
23
24
  - - ">="
24
25
  - !ruby/object:Gem::Version
25
26
  version: '0'
27
+ description:
26
28
  email: michael@grosser.it
27
29
  executables:
28
30
  - parallel_spinach
@@ -67,11 +69,12 @@ licenses:
67
69
  - MIT
68
70
  metadata:
69
71
  bug_tracker_uri: https://github.com/grosser/parallel_tests/issues
70
- changelog_uri: https://github.com/grosser/parallel_tests/blob/v5.0.0/CHANGELOG.md
71
- documentation_uri: https://github.com/grosser/parallel_tests/blob/v5.0.0/Readme.md
72
- source_code_uri: https://github.com/grosser/parallel_tests/tree/v5.0.0
72
+ changelog_uri: https://github.com/grosser/parallel_tests/blob/v5.0.1/CHANGELOG.md
73
+ documentation_uri: https://github.com/grosser/parallel_tests/blob/v5.0.1/Readme.md
74
+ source_code_uri: https://github.com/grosser/parallel_tests/tree/v5.0.1
73
75
  wiki_uri: https://github.com/grosser/parallel_tests/wiki
74
76
  rubygems_mfa_required: 'true'
77
+ post_install_message:
75
78
  rdoc_options: []
76
79
  require_paths:
77
80
  - lib
@@ -86,7 +89,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
89
  - !ruby/object:Gem::Version
87
90
  version: '0'
88
91
  requirements: []
89
- rubygems_version: 3.6.2
92
+ rubygems_version: 3.4.10
93
+ signing_key:
90
94
  specification_version: 4
91
95
  summary: Run Test::Unit / RSpec / Cucumber / Spinach in parallel
92
96
  test_files: []