test-unit 3.5.9 → 3.6.0
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
- data/doc/text/news.md +7 -0
- data/lib/test/unit/ui/console/testrunner.rb +3 -5
- data/lib/test/unit/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a2d8f65980b8363f1d11db9d701d64c0d7b61d08e3bb060c91c360431e3caa7
|
4
|
+
data.tar.gz: 8f81f23199da018d75b30a97ba3468d650f2a3e64f0a58a320027dd721d713fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 66328122e4492fbbb94c448289645ac8cb4f5617c2eff8f54247a14b59beb8cecf0cbb09099272209087fdaa51a51c499572b65d0ccbbb2c62e7e60216b6d6fa
|
7
|
+
data.tar.gz: 7a921f17e91f850de81d6fd394956e7147e60a5955050f1edfb2d01e80a56742d52ab1fb8f2098c09796f997e177b6240be968a00356e9bfb49102156352918a
|
data/doc/text/news.md
CHANGED
@@ -576,11 +576,9 @@ module Test
|
|
576
576
|
if @output_level >= VERBOSE
|
577
577
|
:mark
|
578
578
|
else
|
579
|
-
if ENV["GITHUB_ACTIONS"] == "true"
|
580
|
-
|
581
|
-
|
582
|
-
:inplace
|
583
|
-
end
|
579
|
+
return :fault_only if ENV["GITHUB_ACTIONS"] == "true"
|
580
|
+
return :fault_only unless @output.tty?
|
581
|
+
:inplace
|
584
582
|
end
|
585
583
|
end
|
586
584
|
|
data/lib/test/unit/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: test-unit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kouhei Sutou
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-
|
12
|
+
date: 2023-06-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: power_assert
|