turbo_tests2 3.2.9 → 3.2.10

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: f63573447de503c49edf269ccd4fc2428f0264be443c581368424984a8d297fd
4
- data.tar.gz: 03ac549c607d360119b7414862675512aae32f551f20e7573ab83a410a44d71e
3
+ metadata.gz: ef9aa5b6ef624127fee6f208c3f85446dbcf8a8f48072ed34f12ea3b7af7b343
4
+ data.tar.gz: 8552a68e93d29f1d9bb93d71b6e7435ed9ea5e889c76be641cdb314c8020f31b
5
5
  SHA512:
6
- metadata.gz: f87df2925ae0e2d74bcb2f3995be14f3384b0ac976d371af927da8ea90681893a5c78b2bdc73f569ebffe55a368d9a9f592822997a72457e3804ace986526a4f
7
- data.tar.gz: 4e7ebf8e0ddfdb6df6c29973dbfac46101109aa26a484045569fd630e6f8e129abf49391d1be84427c1b1b8cf7f58df98324b6f70ea19acd56cd7c74602f527d
6
+ metadata.gz: c81f42592dc81b08e22462fe71981ac28d941ff7ddfdfaf7d70db296094b3e76ec51d704614fc3ec53d98bd18f8e849c25def06de48c680c712eb6c30b66776a
7
+ data.tar.gz: df5d0f31a8bdfbad6842ab4e2e0a56804d5d566df0bfbb6745c980bffd68833c3948b014a6f05126c1f84a036c1f7d31e8719f9b2e436517d6342693024447af
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,13 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [3.2.10] - 2026-09-15
34
+
35
+ - TAG: [v3.2.10][3.2.10t]
36
+ - COVERAGE: 96.79% -- 906/936 lines in 10 files
37
+ - BRANCH COVERAGE: 84.86% -- 241/284 branches in 10 files
38
+ - 36.73% documented
39
+
33
40
  ## [3.2.9] - 2026-09-13
34
41
 
35
42
  - TAG: [v3.2.9][3.2.9t]
@@ -602,7 +609,9 @@ Please file a bug if you notice a violation of semantic versioning.
602
609
 
603
610
  - Initial release
604
611
 
605
- [Unreleased]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.2.9...HEAD
612
+ [Unreleased]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.2.10...HEAD
613
+ [3.2.10]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.2.9...v3.2.10
614
+ [3.2.10t]: https://github.com/galtzo-floss/turbo_tests2/releases/tag/v3.2.10
606
615
  [3.2.9]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.2.8...v3.2.9
607
616
  [3.2.9t]: https://github.com/galtzo-floss/turbo_tests2/releases/tag/v3.2.9
608
617
  [3.2.8]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.2.7...v3.2.8
data/README.md CHANGED
@@ -775,7 +775,7 @@ Thanks for RTFM. ☺️
775
775
  [📌gitmoji]: https://gitmoji.dev
776
776
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
777
777
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
778
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.935-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
778
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.936-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
779
779
  [🔐security]: https://github.com/galtzo-floss/turbo_tests2/blob/main/SECURITY.md
780
780
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
781
781
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -668,6 +668,7 @@ module TurboTests
668
668
 
669
669
  def handle_messages
670
670
  exited_process_ids = {}
671
+ process_count = @tests_in_groups&.size || @num_processes
671
672
 
672
673
  loop do
673
674
  message = @messages.pop
@@ -718,7 +719,7 @@ module TurboTests
718
719
 
719
720
  exited_process_ids[process_id] = true
720
721
  @exited_process_ids << process_id
721
- break if exited_process_ids.size == @num_processes
722
+ break if exited_process_ids.size == process_count
722
723
  else
723
724
  warn("Unhandled message in main process: #{message}")
724
725
  end
@@ -4,7 +4,7 @@ module TurboTests
4
4
  # Version namespace for this gem.
5
5
  module Version
6
6
  # Current gem version.
7
- VERSION = "3.2.9"
7
+ VERSION = "3.2.10"
8
8
  end
9
9
  # Current gem version exposed at the traditional constant location.
10
10
  VERSION = Version::VERSION # Traditional Constant Location
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.2.9
4
+ version: 3.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Illia
@@ -315,10 +315,10 @@ licenses:
315
315
  - MIT
316
316
  metadata:
317
317
  homepage_uri: https://turbo-tests2.galtzo.com
318
- source_code_uri: https://github.com/galtzo-floss/turbo_tests2/tree/v3.2.9
319
- changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.2.9/CHANGELOG.md
318
+ source_code_uri: https://github.com/galtzo-floss/turbo_tests2/tree/v3.2.10
319
+ changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.2.10/CHANGELOG.md
320
320
  bug_tracker_uri: https://github.com/galtzo-floss/turbo_tests2/issues
321
- documentation_uri: https://www.rubydoc.info/gems/turbo_tests2/3.2.9
321
+ documentation_uri: https://www.rubydoc.info/gems/turbo_tests2/3.2.10
322
322
  funding_uri: https://github.com/sponsors/pboling
323
323
  wiki_uri: https://github.com/galtzo-floss/turbo_tests2/wiki
324
324
  news_uri: https://www.railsbling.com/tags/turbo_tests2
metadata.gz.sig CHANGED
Binary file