kettle-test 2.0.21 → 2.0.22
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 +16 -1
- data/exe/kettle-test.sh +7 -1
- data/lib/kettle/test/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -4
- 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: 3ded81fe5644c939e7df1c219699e0c131f0e2e8c44d3bf492edc1cbaf677f67
|
|
4
|
+
data.tar.gz: 588bb33e4026b9a6491a0cf499f6981c5d213c17da7e37c614e966a21609dccc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab0d15d4f6b20d60b1ba9633c9df0c532f18dffa4eb250ed54ddb9313ab663502c2faac61741800a23ba27634a877de5132ead360b88bf925fca811b3ec38084
|
|
7
|
+
data.tar.gz: adb4486bb850b46d11dae8f3df8f499b35dac7720305a9262dfccc87fb38739df4d01b74e8c97a34b8d8f399411efc6f32d58bcbf74a5843c68fefea2c98fec2
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,19 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [2.0.22] - 2026-09-13
|
|
34
|
+
|
|
35
|
+
- TAG: [v2.0.22][2.0.22t]
|
|
36
|
+
- COVERAGE: 96.84% -- 92/95 lines in 17 files
|
|
37
|
+
- BRANCH COVERAGE: 100.00% -- 2/2 branches in 17 files
|
|
38
|
+
- 100.00% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- The run highlights no longer show a green check when the run failed without
|
|
43
|
+
failed examples (a non-zero runner exit, or errors outside of examples such
|
|
44
|
+
as a crashed parallel worker).
|
|
45
|
+
|
|
33
46
|
## [2.0.21] - 2026-08-28
|
|
34
47
|
|
|
35
48
|
- TAG: [v2.0.21][2.0.21t]
|
|
@@ -626,7 +639,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
626
639
|
- silent_stream
|
|
627
640
|
- timecop-rspec
|
|
628
641
|
|
|
629
|
-
[Unreleased]: https://github.com/kettle-dev/kettle-test/compare/v2.0.
|
|
642
|
+
[Unreleased]: https://github.com/kettle-dev/kettle-test/compare/v2.0.22...HEAD
|
|
643
|
+
[2.0.22]: https://github.com/kettle-dev/kettle-test/compare/v2.0.21...v2.0.22
|
|
644
|
+
[2.0.22t]: https://github.com/kettle-dev/kettle-test/releases/tag/v2.0.22
|
|
630
645
|
[2.0.21]: https://github.com/kettle-dev/kettle-test/compare/v2.0.20...v2.0.21
|
|
631
646
|
[2.0.21t]: https://github.com/kettle-dev/kettle-test/releases/tag/v2.0.21
|
|
632
647
|
[2.0.20]: https://github.com/kettle-dev/kettle-test/compare/v2.0.19...v2.0.20
|
data/exe/kettle-test.sh
CHANGED
|
@@ -234,9 +234,15 @@ if [ -n "$seed_line" ]; then
|
|
|
234
234
|
fi
|
|
235
235
|
|
|
236
236
|
# Examples / failures / pending
|
|
237
|
+
# The run failed when an example failed, an error occurred outside of examples
|
|
238
|
+
# (for example a spec file or parallel worker that failed to load), or the
|
|
239
|
+
# runner exited non-zero for any other reason.
|
|
237
240
|
if [ -n "$summary_line" ]; then
|
|
238
|
-
if echo "$summary_line" | grep -qE ',\s*[1-9][0-9]* failure'; then
|
|
241
|
+
if echo "$summary_line" | grep -qE ',\s*[1-9][0-9]* (failure|errors? occurred outside)' || [ "$rspec_exit" -ne 0 ]; then
|
|
239
242
|
printf '%b\n' "${RED}❌ ${summary_line}${RESET}"
|
|
243
|
+
if [ "$rspec_exit" -ne 0 ] && [ "$failed_count" -eq 0 ] 2>/dev/null; then
|
|
244
|
+
printf '%b\n' "${YELLOW}⚠️ No failed examples were listed, but the runner exited ${rspec_exit}; check the log for errors outside of examples or crashed workers.${RESET}"
|
|
245
|
+
fi
|
|
240
246
|
else
|
|
241
247
|
printf '%b\n' "${GREEN}✅ ${summary_line}${RESET}"
|
|
242
248
|
fi
|
data/lib/kettle/test/version.rb
CHANGED
|
@@ -5,7 +5,7 @@ module Kettle
|
|
|
5
5
|
# Version namespace for this gem.
|
|
6
6
|
module Version
|
|
7
7
|
# Current gem version.
|
|
8
|
-
VERSION = "2.0.
|
|
8
|
+
VERSION = "2.0.22"
|
|
9
9
|
end
|
|
10
10
|
# Current gem version exposed at the traditional constant location.
|
|
11
11
|
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: kettle-test
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.22
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -404,10 +404,10 @@ licenses:
|
|
|
404
404
|
- PolyForm-Small-Business-1.0.0
|
|
405
405
|
metadata:
|
|
406
406
|
homepage_uri: https://kettle-test.galtzo.com
|
|
407
|
-
source_code_uri: https://github.com/kettle-dev/kettle-test/tree/v2.0.
|
|
408
|
-
changelog_uri: https://github.com/kettle-dev/kettle-test/blob/v2.0.
|
|
407
|
+
source_code_uri: https://github.com/kettle-dev/kettle-test/tree/v2.0.22
|
|
408
|
+
changelog_uri: https://github.com/kettle-dev/kettle-test/blob/v2.0.22/CHANGELOG.md
|
|
409
409
|
bug_tracker_uri: https://github.com/kettle-dev/kettle-test/issues
|
|
410
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-test/2.0.
|
|
410
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-test/2.0.22
|
|
411
411
|
funding_uri: https://github.com/sponsors/pboling
|
|
412
412
|
wiki_uri: https://github.com/kettle-dev/kettle-test/wiki
|
|
413
413
|
news_uri: https://www.railsbling.com/tags/kettle-test
|
metadata.gz.sig
CHANGED
|
Binary file
|