turbo_tests2 3.1.4 → 3.1.6
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +47 -1
- data/CONTRIBUTING.md +4 -1
- data/FUNDING.md +1 -5
- data/MIT.md +21 -0
- data/README.md +33 -18
- data/lib/turbo_tests/cli.rb +11 -8
- data/lib/turbo_tests/version.rb +1 -1
- data/lib/turbo_tests2/rspec/shared_contexts/simplecov_spawn.rb +1 -1
- data.tar.gz.sig +3 -2
- metadata +19 -18
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a4672715143bb805b7a700ba4ca1e1b8f501292dc5d5381c98ff03c96786a09
|
|
4
|
+
data.tar.gz: ee43cdb35352a86ac102db60b30b4f27ff5bcbfb10f8e1eb70ec970e216497b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8604d3870308ba9351a8c12e0669f8f32a32e78b13fa258092f995c5254bbd6f25f194e8ebac74c1cdad55639c09c623a9547e9602d46f69568710029255bf9b
|
|
7
|
+
data.tar.gz: 554d0528befbf6bb15f6c867fb9fc89b80336c0fe15d7e326319547ab6305e22734db014b45838dd929e0f834d3f7e0a597acda4dc8ae225d3a78b27a279ac69
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,48 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [3.1.6] - 2026-07-02
|
|
34
|
+
|
|
35
|
+
- TAG: [v3.1.6][3.1.6t]
|
|
36
|
+
- COVERAGE: 97.40% -- 636/653 lines in 10 files
|
|
37
|
+
- BRANCH COVERAGE: 89.47% -- 136/152 branches in 10 files
|
|
38
|
+
- 37.08% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Package configured license files in gem release file lists.
|
|
43
|
+
|
|
44
|
+
## [3.1.5] - 2026-06-23
|
|
45
|
+
|
|
46
|
+
- TAG: [v3.1.5][3.1.5t]
|
|
47
|
+
- COVERAGE: 97.09% -- 634/653 lines in 10 files
|
|
48
|
+
- BRANCH COVERAGE: 88.82% -- 135/152 branches in 10 files
|
|
49
|
+
- 37.08% documented
|
|
50
|
+
|
|
51
|
+
### Added
|
|
52
|
+
|
|
53
|
+
- Added support for JRuby 10.1 and TruffleRuby 34.0.
|
|
54
|
+
|
|
55
|
+
### Changed
|
|
56
|
+
|
|
57
|
+
- Retemplated project metadata and CI/development automation with `kettle-jem` v7.0.0.
|
|
58
|
+
|
|
59
|
+
### Fixed
|
|
60
|
+
|
|
61
|
+
- Fixed subprocess coverage setup for SimpleCov v1 by starting coverage
|
|
62
|
+
explicitly in the spawn shim and detecting active coverage via Ruby's
|
|
63
|
+
`Coverage.running?` API.
|
|
64
|
+
- Fixed SimpleCov boot order so kettle-soup-cover formatter configuration loads
|
|
65
|
+
after SimpleCov finishes requiring its defaults.
|
|
66
|
+
|
|
67
|
+
- Added `PARALLEL_PID_FILE` to `turbo_tests2 fan` worker environments so
|
|
68
|
+
SimpleCov parallel result collation does not fail when workers inherit
|
|
69
|
+
`PARALLEL_TEST_GROUPS`.
|
|
70
|
+
- Made CLI integration specs assert combined stdout/stderr output so older
|
|
71
|
+
Ruby engines that emit warnings or RSpec load errors on stderr are covered.
|
|
72
|
+
- Relaxed CLI load-error detail expectations only on TruffleRuby, where some
|
|
73
|
+
supported versions exit nonzero but omit the RSpec load-error summary.
|
|
74
|
+
|
|
33
75
|
## [3.1.4] - 2026-06-17
|
|
34
76
|
|
|
35
77
|
- TAG: [v3.1.4][3.1.4t]
|
|
@@ -154,7 +196,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
154
196
|
|
|
155
197
|
- Initial release
|
|
156
198
|
|
|
157
|
-
[Unreleased]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.
|
|
199
|
+
[Unreleased]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.6...HEAD
|
|
200
|
+
[3.1.6]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.5...v3.1.6
|
|
201
|
+
[3.1.6t]: https://github.com/galtzo-floss/turbo_tests2/releases/tag/v3.1.6
|
|
202
|
+
[3.1.5]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.4...v3.1.5
|
|
203
|
+
[3.1.5t]: https://github.com/galtzo-floss/turbo_tests2/releases/tag/v3.1.5
|
|
158
204
|
[3.1.4]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.3...v3.1.4
|
|
159
205
|
[3.1.4t]: https://github.com/galtzo-floss/turbo_tests2/releases/tag/v3.1.4
|
|
160
206
|
[3.1.3]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.2...v3.1.3
|
data/CONTRIBUTING.md
CHANGED
|
@@ -131,9 +131,12 @@ toolchain, and it may be higher than the gemspec runtime floor.
|
|
|
131
131
|
They are created and updated with the commands:
|
|
132
132
|
|
|
133
133
|
```console
|
|
134
|
-
bin/rake appraisal:
|
|
134
|
+
bin/rake appraisal:generate
|
|
135
135
|
```
|
|
136
136
|
|
|
137
|
+
Use `bin/rake appraisal:update` when you intentionally need to resolve fresh
|
|
138
|
+
appraisal locks.
|
|
139
|
+
|
|
137
140
|
If you need to reset all gemfiles/*.gemfile.lock files:
|
|
138
141
|
|
|
139
142
|
```console
|
data/FUNDING.md
CHANGED
|
@@ -6,7 +6,7 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
|
|
|
6
6
|
|
|
7
7
|
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal]
|
|
8
8
|
|
|
9
|
-
[![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate
|
|
9
|
+
[![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
10
10
|
|
|
11
11
|
[⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
|
|
12
12
|
[⛳liberapay]: https://liberapay.com/pboling/donate
|
|
@@ -16,12 +16,8 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
|
|
|
16
16
|
[🖇osc-sponsors-i]: https://opencollective.com/galtzo-floss/sponsors/badge.svg?style=flat
|
|
17
17
|
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
|
18
18
|
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
19
|
-
[🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
|
|
20
|
-
[🖇polar]: https://polar.sh/pboling
|
|
21
19
|
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
|
|
22
20
|
[🖇kofi]: https://ko-fi.com/pboling
|
|
23
|
-
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
|
|
24
|
-
[🖇patreon]: https://patreon.com/galtzo
|
|
25
21
|
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
|
|
26
22
|
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
|
27
23
|
[🖇paypal-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=flat&logo=paypal
|
data/MIT.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
See [LICENSE.md](LICENSE.md) for the copyright notice.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
|
|
11
11
|
`if ci_badges.map(&:color).all? { it == "green"}` 👇️ send money so I can do more of this. FLOSS maintenance is now my full-time job.
|
|
12
12
|
|
|
13
|
-
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate
|
|
13
|
+
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
14
14
|
|
|
15
|
-
<details>
|
|
15
|
+
<details markdown="1">
|
|
16
16
|
<summary>👣 How will this project approach the September 2025 hostile takeover of RubyGems? 🚑️</summary>
|
|
17
17
|
|
|
18
18
|
I've summarized my thoughts in [this blog post](https://dev.to/galtzo/hostile-takeover-of-rubygems-my-thoughts-5hlo).
|
|
@@ -66,9 +66,9 @@ Finished in 2 minute 25.15 seconds (files took 0 seconds to load)
|
|
|
66
66
|
|
|
67
67
|
| Tokens to Remember | [![Gem name][⛳️name-img]][⛳️gem-name] [![Gem namespace][⛳️namespace-img]][⛳️gem-namespace] |
|
|
68
68
|
|-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
69
|
-
| Works with JRuby | [![JRuby 9.2 Compat][💎jruby-9.2i]][🚎jruby-9.2-wf] [![JRuby 9.3 Compat][💎jruby-9.3i]][🚎jruby-9.3-wf] <br/> [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎jruby-9.4-wf] [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
|
|
70
|
-
| Works with Truffle Ruby | [![Truffle Ruby 22.3 Compat][💎truby-22.3i]][🚎truby-22.3-wf] [![Truffle Ruby 23.0 Compat][💎truby-23.0i]][🚎truby-23.0-wf] [![Truffle Ruby 23.1 Compat][💎truby-23.1i]][🚎truby-23.1-wf] <br/> [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎truby-24.2-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎truby-25.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf]|
|
|
71
|
-
| Works with MRI Ruby 4 | [![Ruby
|
|
69
|
+
| Works with JRuby | [![JRuby 9.2 Compat][💎jruby-9.2i]][🚎jruby-9.2-wf] [![JRuby 9.3 Compat][💎jruby-9.3i]][🚎jruby-9.3-wf] <br/> [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎jruby-9.4-wf] [![JRuby 10.0 Compat][💎jruby-10.0i]][🚎jruby-10.0-wf] [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
|
|
70
|
+
| Works with Truffle Ruby | [![Truffle Ruby 22.3 Compat][💎truby-22.3i]][🚎truby-22.3-wf] [![Truffle Ruby 23.0 Compat][💎truby-23.0i]][🚎truby-23.0-wf] [![Truffle Ruby 23.1 Compat][💎truby-23.1i]][🚎truby-23.1-wf] <br/> [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎truby-24.2-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎truby-25.0-wf] [![Truffle Ruby 33.0 Compat][💎truby-33.0i]][🚎truby-33.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf] [![Truffle Ruby HEAD Compat][💎truby-headi]][🚎3-hd-wf]|
|
|
71
|
+
| Works with MRI Ruby 4 | [![Ruby current Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf]|
|
|
72
72
|
| Works with MRI Ruby 3 | [![Ruby 3.0 Compat][💎ruby-3.0i]][🚎ruby-3.0-wf] [![Ruby 3.1 Compat][💎ruby-3.1i]][🚎ruby-3.1-wf] [![Ruby 3.2 Compat][💎ruby-3.2i]][🚎ruby-3.2-wf] [![Ruby 3.3 Compat][💎ruby-3.3i]][🚎ruby-3.3-wf] [![Ruby 3.4 Compat][💎ruby-3.4i]][🚎ruby-3.4-wf]|
|
|
73
73
|
| Works with MRI Ruby 2 | [![Ruby 2.4 Compat][💎ruby-2.4i]][🚎ruby-2.4-wf] [![Ruby 2.5 Compat][💎ruby-2.5i]][🚎ruby-2.5-wf] [![Ruby 2.6 Compat][💎ruby-2.6i]][🚎ruby-2.6-wf] [![Ruby 2.7 Compat][💎ruby-2.7i]][🚎ruby-2.7-wf]|
|
|
74
74
|
| Support & Community | [![Join Me on Daily.dev's RubyFriends][✉️ruby-friends-img]][✉️ruby-friends] [![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite] [![Get help from me on Upwork][👨🏼🏫expsup-upwork-img]][👨🏼🏫expsup-upwork] [![Get help from me on Codementor][👨🏼🏫expsup-codementor-img]][👨🏼🏫expsup-codementor] |
|
|
@@ -87,9 +87,24 @@ This test floor is configured by `ruby.test_minimum` in `.kettle-jem.yml` and
|
|
|
87
87
|
may be higher than the gem's runtime compatibility floor when legacy Rubies are
|
|
88
88
|
not practical for the current toolchain.
|
|
89
89
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
90
|
+
<a href="https://github.com/kettle-dev"><img alt="kettle-dev Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/kettle-dev/avatar-128px.svg" width="14%" align="right"/></a>
|
|
91
|
+
|
|
92
|
+
The _amazing_ test matrix is powered by the kettle-dev stack.
|
|
93
|
+
|
|
94
|
+
<details markdown="1">
|
|
95
|
+
<summary>How kettle-dev manages complexity in tests</summary>
|
|
96
|
+
|
|
97
|
+
| Gem | Source | Role | Daily download rank |
|
|
98
|
+
|-----|--------|------|---------------------|
|
|
99
|
+
| [appraisal2](https://bestgems.org/gems/appraisal2) | [GitHub](https://github.com/appraisal-rb/appraisal2) | multi-dependency Appraisal matrix generation | [](https://bestgems.org/gems/appraisal2) |
|
|
100
|
+
| [appraisal2-rubocop](https://bestgems.org/gems/appraisal2-rubocop) | [GitHub](https://github.com/appraisal-rb/appraisal2-rubocop) | RuboCop Appraisal generator integration | [](https://bestgems.org/gems/appraisal2-rubocop) |
|
|
101
|
+
| [kettle-dev](https://bestgems.org/gems/kettle-dev) | [GitHub](https://github.com/kettle-dev/kettle-dev) | development, release, and CI workflow tooling | [](https://bestgems.org/gems/kettle-dev) |
|
|
102
|
+
| [kettle-jem](https://bestgems.org/gems/kettle-jem) | [GitHub](https://github.com/kettle-dev/kettle-jem) | Appraisals & CI workflow templates | [](https://bestgems.org/gems/kettle-jem) |
|
|
103
|
+
| [kettle-soup-cover](https://bestgems.org/gems/kettle-soup-cover) | [GitHub](https://github.com/kettle-dev/kettle-soup-cover) | SimpleCov coverage policy and reporting | [](https://bestgems.org/gems/kettle-soup-cover) |
|
|
104
|
+
| [kettle-test](https://bestgems.org/gems/kettle-test) | [GitHub](https://github.com/kettle-dev/kettle-test) | standard test runner and coverage harness | [](https://bestgems.org/gems/kettle-test) |
|
|
105
|
+
| [rubocop-lts](https://bestgems.org/gems/rubocop-lts) | [GitHub](https://github.com/rubocop-lts/rubocop-lts) | Ruby-version-aware linting | [](https://bestgems.org/gems/rubocop-lts) |
|
|
106
|
+
|
|
107
|
+
</details>
|
|
93
108
|
|
|
94
109
|
### Federated DVCS
|
|
95
110
|
|
|
@@ -318,7 +333,7 @@ NOTE: [kettle-readme-backers][kettle-readme-backers] updates this list every day
|
|
|
318
333
|
No sponsors yet. Be the first!
|
|
319
334
|
<!-- OPENCOLLECTIVE-ORGANIZATIONS:END -->
|
|
320
335
|
|
|
321
|
-
[kettle-readme-backers]: https://github.com/galtzo-floss/turbo_tests2/blob/main/
|
|
336
|
+
[kettle-readme-backers]: https://github.com/galtzo-floss/turbo_tests2/blob/main/bin/kettle-readme-backers
|
|
322
337
|
|
|
323
338
|
### Another way to support open-source
|
|
324
339
|
|
|
@@ -330,7 +345,7 @@ I’m developing a new library, [floss_funding][🖇floss-funding-gem], designed
|
|
|
330
345
|
|
|
331
346
|
**[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
|
|
332
347
|
|
|
333
|
-
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate
|
|
348
|
+
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
334
349
|
|
|
335
350
|
## 🔐 Security
|
|
336
351
|
|
|
@@ -376,7 +391,7 @@ Made with [contributors-img][🖐contrib-rocks].
|
|
|
376
391
|
|
|
377
392
|
Also see GitLab Contributors: [https://gitlab.com/galtzo-floss/turbo_tests2/-/graphs/main][🚎contributors-gl]
|
|
378
393
|
|
|
379
|
-
<details>
|
|
394
|
+
<details markdown="1">
|
|
380
395
|
<summary>⭐️ Star History</summary>
|
|
381
396
|
|
|
382
397
|
<a href="https://star-history.com/galtzo-floss/turbo_tests2&Date">
|
|
@@ -482,12 +497,8 @@ Thanks for RTFM. ☺️
|
|
|
482
497
|
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
|
483
498
|
[🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
|
|
484
499
|
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
485
|
-
[🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
|
|
486
|
-
[🖇polar]: https://polar.sh/pboling
|
|
487
500
|
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
|
|
488
501
|
[🖇kofi]: https://ko-fi.com/pboling
|
|
489
|
-
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
|
|
490
|
-
[🖇patreon]: https://patreon.com/galtzo
|
|
491
502
|
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
|
|
492
503
|
[🖇buyme-img]: https://img.buymeacoffee.com/button-api/?text=Buy%20me%20a%20latte&emoji=&slug=pboling&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff
|
|
493
504
|
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
|
@@ -577,11 +588,13 @@ Thanks for RTFM. ☺️
|
|
|
577
588
|
[🚎jruby-9.2-wf]: https://github.com/galtzo-floss/turbo_tests2/actions/workflows/jruby-9.2.yml
|
|
578
589
|
[🚎jruby-9.3-wf]: https://github.com/galtzo-floss/turbo_tests2/actions/workflows/jruby-9.3.yml
|
|
579
590
|
[🚎jruby-9.4-wf]: https://github.com/galtzo-floss/turbo_tests2/actions/workflows/jruby-9.4.yml
|
|
591
|
+
[🚎jruby-10.0-wf]: https://github.com/galtzo-floss/turbo_tests2/actions/workflows/jruby-10.0.yml
|
|
580
592
|
[🚎truby-22.3-wf]: https://github.com/galtzo-floss/turbo_tests2/actions/workflows/truffleruby-22.3.yml
|
|
581
593
|
[🚎truby-23.0-wf]: https://github.com/galtzo-floss/turbo_tests2/actions/workflows/truffleruby-23.0.yml
|
|
582
594
|
[🚎truby-23.1-wf]: https://github.com/galtzo-floss/turbo_tests2/actions/workflows/truffleruby-23.1.yml
|
|
583
595
|
[🚎truby-24.2-wf]: https://github.com/galtzo-floss/turbo_tests2/actions/workflows/truffleruby-24.2.yml
|
|
584
596
|
[🚎truby-25.0-wf]: https://github.com/galtzo-floss/turbo_tests2/actions/workflows/truffleruby-25.0.yml
|
|
597
|
+
[🚎truby-33.0-wf]: https://github.com/galtzo-floss/turbo_tests2/actions/workflows/truffleruby-33.0.yml
|
|
585
598
|
[🚎2-cov-wf]: https://github.com/galtzo-floss/turbo_tests2/actions/workflows/coverage.yml
|
|
586
599
|
[🚎2-cov-wfi]: https://github.com/galtzo-floss/turbo_tests2/actions/workflows/coverage.yml/badge.svg
|
|
587
600
|
[🚎3-hd-wf]: https://github.com/galtzo-floss/turbo_tests2/actions/workflows/heads.yml
|
|
@@ -611,7 +624,6 @@ Thanks for RTFM. ☺️
|
|
|
611
624
|
[💎ruby-3.2i]: https://img.shields.io/badge/Ruby-3.2-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
612
625
|
[💎ruby-3.3i]: https://img.shields.io/badge/Ruby-3.3-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
613
626
|
[💎ruby-3.4i]: https://img.shields.io/badge/Ruby-3.4-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
614
|
-
[💎ruby-4.0i]: https://img.shields.io/badge/Ruby-4.0-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
615
627
|
[💎ruby-c-i]: https://img.shields.io/badge/Ruby-current-CC342D?style=for-the-badge&logo=ruby&logoColor=green
|
|
616
628
|
[💎ruby-headi]: https://img.shields.io/badge/Ruby-HEAD-CC342D?style=for-the-badge&logo=ruby&logoColor=blue
|
|
617
629
|
[💎truby-22.3i]: https://img.shields.io/badge/Truffle_Ruby-22.3-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
@@ -619,10 +631,13 @@ Thanks for RTFM. ☺️
|
|
|
619
631
|
[💎truby-23.1i]: https://img.shields.io/badge/Truffle_Ruby-23.1-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
620
632
|
[💎truby-24.2i]: https://img.shields.io/badge/Truffle_Ruby-24.2-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
621
633
|
[💎truby-25.0i]: https://img.shields.io/badge/Truffle_Ruby-25.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
634
|
+
[💎truby-33.0i]: https://img.shields.io/badge/Truffle_Ruby-33.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
622
635
|
[💎truby-c-i]: https://img.shields.io/badge/Truffle_Ruby-current-34BCB1?style=for-the-badge&logo=ruby&logoColor=green
|
|
636
|
+
[💎truby-headi]: https://img.shields.io/badge/Truffle_Ruby-HEAD-34BCB1?style=for-the-badge&logo=ruby&logoColor=blue
|
|
623
637
|
[💎jruby-9.2i]: https://img.shields.io/badge/JRuby-9.2-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
|
624
638
|
[💎jruby-9.3i]: https://img.shields.io/badge/JRuby-9.3-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
|
625
639
|
[💎jruby-9.4i]: https://img.shields.io/badge/JRuby-9.4-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
|
640
|
+
[💎jruby-10.0i]: https://img.shields.io/badge/JRuby-10.0-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
|
626
641
|
[💎jruby-c-i]: https://img.shields.io/badge/JRuby-current-FBE742?style=for-the-badge&logo=ruby&logoColor=green
|
|
627
642
|
[💎jruby-headi]: https://img.shields.io/badge/JRuby-HEAD-FBE742?style=for-the-badge&logo=ruby&logoColor=blue
|
|
628
643
|
[🤝gh-issues]: https://github.com/galtzo-floss/turbo_tests2/issues
|
|
@@ -651,7 +666,7 @@ Thanks for RTFM. ☺️
|
|
|
651
666
|
[📌gitmoji]: https://gitmoji.dev
|
|
652
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
|
|
653
668
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
654
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.
|
|
669
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.653-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
655
670
|
[🔐security]: https://github.com/galtzo-floss/turbo_tests2/blob/main/SECURITY.md
|
|
656
671
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
657
672
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
|
@@ -681,5 +696,5 @@ Thanks for RTFM. ☺️
|
|
|
681
696
|
| Homepage | https://github.com/galtzo-floss/turbo_tests2 |
|
|
682
697
|
| Source | https://github.com/galtzo-floss/turbo_tests2 |
|
|
683
698
|
| License | `MIT` |
|
|
684
|
-
| Funding | https://github.com/sponsors/pboling, https://
|
|
699
|
+
| Funding | https://github.com/sponsors/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/galtzo-floss, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/turbo_tests2, https://www.buymeacoffee.com/pboling |
|
|
685
700
|
<!-- kettle-jem:metadata:end -->
|
data/lib/turbo_tests/cli.rb
CHANGED
|
@@ -194,12 +194,15 @@ module TurboTests
|
|
|
194
194
|
end
|
|
195
195
|
|
|
196
196
|
processes = ParallelTests.determine_number_of_processes(count)
|
|
197
|
-
pids =
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
197
|
+
pids = ParallelTests.with_pid_file do
|
|
198
|
+
(1..processes).map do |process_id|
|
|
199
|
+
env = {
|
|
200
|
+
"TEST_ENV_NUMBER" => process_id.to_s,
|
|
201
|
+
"PARALLEL_TEST_GROUPS" => processes.to_s,
|
|
202
|
+
"PARALLEL_PID_FILE" => ParallelTests.pid_file_path
|
|
203
|
+
}
|
|
204
|
+
Process.spawn(env, *args)
|
|
205
|
+
end
|
|
203
206
|
end
|
|
204
207
|
statuses = pids.map { |pid| Process.wait2(pid).last }
|
|
205
208
|
|
|
@@ -263,9 +266,9 @@ module TurboTests
|
|
|
263
266
|
begin
|
|
264
267
|
require "rake"
|
|
265
268
|
rescue LoadError
|
|
266
|
-
# :
|
|
269
|
+
# simplecov:disable
|
|
267
270
|
return # rake is optional
|
|
268
|
-
# :
|
|
271
|
+
# simplecov:enable
|
|
269
272
|
end
|
|
270
273
|
|
|
271
274
|
# Pass an empty argv so Rake doesn't parse the current process's ARGV,
|
data/lib/turbo_tests/version.rb
CHANGED
|
@@ -13,7 +13,7 @@ RSpec.shared_context("with simplecov spawn coverage") do
|
|
|
13
13
|
original_rubyopt = ENV.fetch("RUBYOPT", nil)
|
|
14
14
|
original_cov_min_hard = ENV.fetch("K_SOUP_COV_MIN_HARD", nil)
|
|
15
15
|
begin
|
|
16
|
-
if defined?(SimpleCov) &&
|
|
16
|
+
if defined?(SimpleCov) && defined?(Coverage) && Coverage.respond_to?(:running?) && Coverage.running?
|
|
17
17
|
spawn_path = simplecov_spawn_path
|
|
18
18
|
raise ArgumentError, "Expected SimpleCov spawn shim at #{spawn_path}" unless File.file?(spawn_path)
|
|
19
19
|
|
data.tar.gz.sig
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
BOp?��$�����y��#�`[>���[��s'X�鄇�����$�6�6�7ʖ!tۮA+� �jƟ��2)�]��\�+��� t5៵0�?�cWX��7�Й�Oq��Fl��{�O�g��gϞY����0�ƪ���9���6���zU�n���Y�;�����+E�w�Q�YnI5Xm�����[Y��ܗ��I7�@�h���7���4\h��e�G�vp�kR���%q49U�\�S
|
|
2
|
+
֑�II�7�F��o4��`�B眍q��M��M��Vi�V��^#_2]6٦��MpA!Ȩ���� ��Wa�֔�L6
|
|
3
|
+
��,V��hu�c�]S�Ʊ�Gk�%�τq��t�D&YD����Q�ϑ�C����
|
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.
|
|
4
|
+
version: 3.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Illia
|
|
@@ -90,7 +90,7 @@ dependencies:
|
|
|
90
90
|
version: '1.1'
|
|
91
91
|
- - ">="
|
|
92
92
|
- !ruby/object:Gem::Version
|
|
93
|
-
version: 1.1.
|
|
93
|
+
version: 1.1.13
|
|
94
94
|
type: :runtime
|
|
95
95
|
prerelease: false
|
|
96
96
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -100,27 +100,27 @@ dependencies:
|
|
|
100
100
|
version: '1.1'
|
|
101
101
|
- - ">="
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: 1.1.
|
|
103
|
+
version: 1.1.13
|
|
104
104
|
- !ruby/object:Gem::Dependency
|
|
105
105
|
name: kettle-dev
|
|
106
106
|
requirement: !ruby/object:Gem::Requirement
|
|
107
107
|
requirements:
|
|
108
108
|
- - "~>"
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
|
-
version: '2.
|
|
110
|
+
version: '2.3'
|
|
111
111
|
- - ">="
|
|
112
112
|
- !ruby/object:Gem::Version
|
|
113
|
-
version: 2.
|
|
113
|
+
version: 2.3.0
|
|
114
114
|
type: :development
|
|
115
115
|
prerelease: false
|
|
116
116
|
version_requirements: !ruby/object:Gem::Requirement
|
|
117
117
|
requirements:
|
|
118
118
|
- - "~>"
|
|
119
119
|
- !ruby/object:Gem::Version
|
|
120
|
-
version: '2.
|
|
120
|
+
version: '2.3'
|
|
121
121
|
- - ">="
|
|
122
122
|
- !ruby/object:Gem::Version
|
|
123
|
-
version: 2.
|
|
123
|
+
version: 2.3.0
|
|
124
124
|
- !ruby/object:Gem::Dependency
|
|
125
125
|
name: bundler-audit
|
|
126
126
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -178,7 +178,7 @@ dependencies:
|
|
|
178
178
|
version: '3.1'
|
|
179
179
|
- - ">="
|
|
180
180
|
- !ruby/object:Gem::Version
|
|
181
|
-
version: 3.1.
|
|
181
|
+
version: 3.1.4
|
|
182
182
|
type: :development
|
|
183
183
|
prerelease: false
|
|
184
184
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -188,7 +188,7 @@ dependencies:
|
|
|
188
188
|
version: '3.1'
|
|
189
189
|
- - ">="
|
|
190
190
|
- !ruby/object:Gem::Version
|
|
191
|
-
version: 3.1.
|
|
191
|
+
version: 3.1.4
|
|
192
192
|
- !ruby/object:Gem::Dependency
|
|
193
193
|
name: kettle-test
|
|
194
194
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -198,7 +198,7 @@ dependencies:
|
|
|
198
198
|
version: '2.0'
|
|
199
199
|
- - ">="
|
|
200
200
|
- !ruby/object:Gem::Version
|
|
201
|
-
version: 2.0.
|
|
201
|
+
version: 2.0.9
|
|
202
202
|
type: :development
|
|
203
203
|
prerelease: false
|
|
204
204
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -208,7 +208,7 @@ dependencies:
|
|
|
208
208
|
version: '2.0'
|
|
209
209
|
- - ">="
|
|
210
210
|
- !ruby/object:Gem::Version
|
|
211
|
-
version: 2.0.
|
|
211
|
+
version: 2.0.9
|
|
212
212
|
- !ruby/object:Gem::Dependency
|
|
213
213
|
name: ruby-progressbar
|
|
214
214
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -232,7 +232,7 @@ dependencies:
|
|
|
232
232
|
version: '1.0'
|
|
233
233
|
- - ">="
|
|
234
234
|
- !ruby/object:Gem::Version
|
|
235
|
-
version: 1.0.
|
|
235
|
+
version: 1.0.4
|
|
236
236
|
type: :development
|
|
237
237
|
prerelease: false
|
|
238
238
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -242,7 +242,7 @@ dependencies:
|
|
|
242
242
|
version: '1.0'
|
|
243
243
|
- - ">="
|
|
244
244
|
- !ruby/object:Gem::Version
|
|
245
|
-
version: 1.0.
|
|
245
|
+
version: 1.0.4
|
|
246
246
|
- !ruby/object:Gem::Dependency
|
|
247
247
|
name: gitmoji-regex
|
|
248
248
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -252,7 +252,7 @@ dependencies:
|
|
|
252
252
|
version: '2.0'
|
|
253
253
|
- - ">="
|
|
254
254
|
- !ruby/object:Gem::Version
|
|
255
|
-
version: 2.0.
|
|
255
|
+
version: 2.0.3
|
|
256
256
|
type: :development
|
|
257
257
|
prerelease: false
|
|
258
258
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -262,7 +262,7 @@ dependencies:
|
|
|
262
262
|
version: '2.0'
|
|
263
263
|
- - ">="
|
|
264
264
|
- !ruby/object:Gem::Version
|
|
265
|
-
version: 2.0.
|
|
265
|
+
version: 2.0.3
|
|
266
266
|
description: "\U0001F680 turbo_tests2` is a drop-in replacement for `serpapi/turbo_tests`
|
|
267
267
|
and `grosser/parallel_tests` with incremental summarized output. Source code of
|
|
268
268
|
`turbo_test2` gem is based on Discourse and Rubygems work in this area (see README.md)."
|
|
@@ -288,6 +288,7 @@ files:
|
|
|
288
288
|
- CONTRIBUTING.md
|
|
289
289
|
- FUNDING.md
|
|
290
290
|
- LICENSE.md
|
|
291
|
+
- MIT.md
|
|
291
292
|
- README.md
|
|
292
293
|
- RUBOCOP.md
|
|
293
294
|
- SECURITY.md
|
|
@@ -309,10 +310,10 @@ licenses:
|
|
|
309
310
|
- MIT
|
|
310
311
|
metadata:
|
|
311
312
|
homepage_uri: https://turbo-tests2.galtzo.com
|
|
312
|
-
source_code_uri: https://github.com/galtzo-floss/turbo_tests2/tree/v3.1.
|
|
313
|
-
changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.1.
|
|
313
|
+
source_code_uri: https://github.com/galtzo-floss/turbo_tests2/tree/v3.1.6
|
|
314
|
+
changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.1.6/CHANGELOG.md
|
|
314
315
|
bug_tracker_uri: https://github.com/galtzo-floss/turbo_tests2/issues
|
|
315
|
-
documentation_uri: https://www.rubydoc.info/gems/turbo_tests2/3.1.
|
|
316
|
+
documentation_uri: https://www.rubydoc.info/gems/turbo_tests2/3.1.6
|
|
316
317
|
funding_uri: https://github.com/sponsors/pboling
|
|
317
318
|
wiki_uri: https://github.com/galtzo-floss/turbo_tests2/wiki
|
|
318
319
|
news_uri: https://www.railsbling.com/tags/turbo_tests2
|
metadata.gz.sig
CHANGED
|
Binary file
|