turbo_tests2 3.1.13 → 3.1.14

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: 394115742cadee6d2c917aa3d4234eb6d61ef695c2629f7960262fbe7b748331
4
- data.tar.gz: ddde1b1124d90db035218b071f36d5c2f30a0453ada0b634d0797504bc406c3e
3
+ metadata.gz: b4031f877288b31974b622b8dffb0acffb1361ee96347d695ea69dd9c47a5950
4
+ data.tar.gz: 8bc186019f3b056c15dc2f68cf42b2062a68f4dc9d1fa34c397446933ac37999
5
5
  SHA512:
6
- metadata.gz: c2b063990697f22ac01fe2f08d233d5b1b13387bebbe26a48503aab25a515df11ca1b523c720eb7c620f457926f4f3a0c1c415999c3e763fc4746dd6d89ec955
7
- data.tar.gz: 935bbe77795769c8195867207b2caa6383bfcc1f2a765932673b695d6151ba38894c25d0c85c0c732bdccf5cae1234f50c930632b04cff7e60eb9b1332ddcbb0
6
+ metadata.gz: 9a28f75223e3bd926d6cc5ebf4e94bd0de1efa10b82eab792e595cedc73aa1a6bb398e2093058f170c4c7a2d5a76d4b7dc1e8edcc0d01971e4d03d7406d97170
7
+ data.tar.gz: 4eed7b464c8e3d26419a2822bdeed6c60084c5e25968352af3a053d728f25004b18383b4fed4ab13994f3dfcb28a02e23542560c51c1a1c73fbb3a03ffa90755
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,21 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [3.1.14] - 2026-07-17
34
+
35
+ - TAG: [v3.1.14][3.1.14t]
36
+ - COVERAGE: 97.30% -- 758/779 lines in 10 files
37
+ - BRANCH COVERAGE: 88.26% -- 188/213 branches in 10 files
38
+ - 35.11% documented
39
+
40
+ ### Fixed
41
+
42
+ - Worker commands now override RSpec's default options file, then explicitly
43
+ pass filtered project `.rspec` options. File-discovery options such as
44
+ `--pattern` are dropped after `turbo_tests2` has already selected each shard,
45
+ preventing aggregate suite patterns from making every worker run the full
46
+ suite while preserving options like `--require spec_helper`.
47
+
33
48
  ## [3.1.13] - 2026-07-16
34
49
 
35
50
  - TAG: [v3.1.13][3.1.13t]
@@ -287,7 +302,9 @@ Please file a bug if you notice a violation of semantic versioning.
287
302
 
288
303
  - Initial release
289
304
 
290
- [Unreleased]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.13...HEAD
305
+ [Unreleased]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.14...HEAD
306
+ [3.1.14]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.13...v3.1.14
307
+ [3.1.14t]: https://github.com/galtzo-floss/turbo_tests2/releases/tag/v3.1.14
291
308
  [3.1.13]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.12...v3.1.13
292
309
  [3.1.13t]: https://github.com/galtzo-floss/turbo_tests2/releases/tag/v3.1.13
293
310
  [3.1.12]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.11...v3.1.12
data/README.md CHANGED
@@ -666,7 +666,7 @@ Thanks for RTFM. ☺️
666
666
  [📌gitmoji]: https://gitmoji.dev
667
667
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
668
668
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
669
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.760-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
669
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.779-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
670
670
  [🔐security]: https://github.com/galtzo-floss/turbo_tests2/blob/main/SECURITY.md
671
671
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
672
672
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -3,6 +3,7 @@
3
3
  require "json"
4
4
  require "parallel_tests/rspec/runner"
5
5
  require "rspec/core"
6
+ require "shellwords"
6
7
  require "tempfile"
7
8
 
8
9
  require_relative "../utils/hash_extension"
@@ -142,6 +143,39 @@ module TurboTests
142
143
  path.start_with?(root) ? path[root.length..-1] : path
143
144
  end
144
145
  end
146
+
147
+ def worker_spec_opts(spec_opts)
148
+ args = project_rspec_options + Array(spec_opts)
149
+ filtered = []
150
+ skip_next = false
151
+
152
+ args.each do |arg|
153
+ if skip_next
154
+ skip_next = false
155
+ next
156
+ end
157
+
158
+ case arg
159
+ when "--pattern", "-P", "--default-path"
160
+ skip_next = true
161
+ when /\A--pattern=/, /\A-P.+/, /\A--default-path=/
162
+ next
163
+ else
164
+ filtered << arg
165
+ end
166
+ end
167
+
168
+ filtered
169
+ end
170
+
171
+ def project_rspec_options(root = Dir.pwd)
172
+ %w[.rspec .rspec-local].flat_map do |path|
173
+ option_file = File.join(root, path)
174
+ next [] unless File.file?(option_file)
175
+
176
+ Shellwords.split(File.read(option_file))
177
+ end
178
+ end
145
179
  end
146
180
 
147
181
  def initialize(**opts)
@@ -325,10 +359,12 @@ module TurboTests
325
359
  []
326
360
  end
327
361
 
328
- spec_opts = ParallelTests::RSpec::Runner.send(:spec_opts)
362
+ spec_opts = self.class.worker_spec_opts(ParallelTests::RSpec::Runner.send(:spec_opts))
329
363
 
330
364
  command = [
331
365
  *command_name,
366
+ "--options",
367
+ File::NULL,
332
368
  *extra_args,
333
369
  *seed_option,
334
370
  "--format",
@@ -2,7 +2,7 @@
2
2
 
3
3
  module TurboTests
4
4
  module Version
5
- VERSION = "3.1.13"
5
+ VERSION = "3.1.14"
6
6
  end
7
7
  VERSION = Version::VERSION # Traditional Constant Location
8
8
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: turbo_tests2
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.13
4
+ version: 3.1.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Illia
@@ -312,10 +312,10 @@ licenses:
312
312
  - MIT
313
313
  metadata:
314
314
  homepage_uri: https://turbo-tests2.galtzo.com
315
- source_code_uri: https://github.com/galtzo-floss/turbo_tests2/tree/v3.1.13
316
- changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.1.13/CHANGELOG.md
315
+ source_code_uri: https://github.com/galtzo-floss/turbo_tests2/tree/v3.1.14
316
+ changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.1.14/CHANGELOG.md
317
317
  bug_tracker_uri: https://github.com/galtzo-floss/turbo_tests2/issues
318
- documentation_uri: https://www.rubydoc.info/gems/turbo_tests2/3.1.13
318
+ documentation_uri: https://www.rubydoc.info/gems/turbo_tests2/3.1.14
319
319
  funding_uri: https://github.com/sponsors/pboling
320
320
  wiki_uri: https://github.com/galtzo-floss/turbo_tests2/wiki
321
321
  news_uri: https://www.railsbling.com/tags/turbo_tests2
metadata.gz.sig CHANGED
Binary file