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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c662a2a626a4e04b7e0d3a572b9f885816068579bc77f506bce46be13e01dcd
4
- data.tar.gz: 8592df7be6974cf5cbad6fa97e436083d1e705eb761d9526a9b2f3026f3bfc3c
3
+ metadata.gz: 5a2d8f65980b8363f1d11db9d701d64c0d7b61d08e3bb060c91c360431e3caa7
4
+ data.tar.gz: 8f81f23199da018d75b30a97ba3468d650f2a3e64f0a58a320027dd721d713fb
5
5
  SHA512:
6
- metadata.gz: cdfe90c8d07d74364bc8703eefc73182dfdba8a583def8c281e66ce47ea56161d1658ff12cc94fc8023bec31e639e564777fd4778003e9d0029a88b6ff91574b
7
- data.tar.gz: 657710cb8f5d6c8950aa3bd9de0727ad278944ac100d859efbe8d8766e411f2ade3d53e9d22f63670544814ec1263c581a47c37087990b7ba8065eb0a1f03b1f
6
+ metadata.gz: 66328122e4492fbbb94c448289645ac8cb4f5617c2eff8f54247a14b59beb8cecf0cbb09099272209087fdaa51a51c499572b65d0ccbbb2c62e7e60216b6d6fa
7
+ data.tar.gz: 7a921f17e91f850de81d6fd394956e7147e60a5955050f1edfb2d01e80a56742d52ab1fb8f2098c09796f997e177b6240be968a00356e9bfb49102156352918a
data/doc/text/news.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # News
2
2
 
3
+ ## 3.6.0 - 2023-05-25 {#version-3-6-0}
4
+
5
+ ### Improvements
6
+
7
+ * UI: console: Use `--progress-style=fault-only` with non-tty output
8
+ by default.
9
+
3
10
  ## 3.5.9 - 2023-05-25 {#version-3-5-9}
4
11
 
5
12
  ### Improvements
@@ -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
- :fault_only
581
- else
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
 
@@ -1,5 +1,5 @@
1
1
  module Test
2
2
  module Unit
3
- VERSION = "3.5.9"
3
+ VERSION = "3.6.0"
4
4
  end
5
5
  end
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.5.9
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-05-25 00:00:00.000000000 Z
12
+ date: 2023-06-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: power_assert