minitest-heat 1.3.0 → 2.0.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/.github/workflows/main.yml +2 -2
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +9 -0
- data/Gemfile +0 -3
- data/Gemfile.lock +4 -7
- data/RELEASING.md +0 -1
- data/lib/minitest/heat/version.rb +1 -1
- data/minitest-heat.gemspec +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: 8b840b58e068cbca8670479e03202c33c1ca6084ac72c1b84b862f57098a375d
|
|
4
|
+
data.tar.gz: ec29ff00bc92f9d1983d988a742f47272354f7137e50e1b67ff10da2b237a486
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6b68ad844a22dd0b583e0def4bd57dac55bf4e7752e0f96df9db64c7d40edaf794c7cdd5e49261af1212e47e74e8fbfdd7c783ad1c8a2aaadc073b3b7435f74
|
|
7
|
+
data.tar.gz: 56de30c8534a10ac407aed531e1db3affbf419a760b39bb2d22aae8f2431c80ea08cced84b64691d377386d852acd3b758d9d8c8069490354165f97b557b115f
|
data/.github/workflows/main.yml
CHANGED
|
@@ -31,7 +31,7 @@ jobs:
|
|
|
31
31
|
strategy:
|
|
32
32
|
fail-fast: false
|
|
33
33
|
matrix:
|
|
34
|
-
ruby: ['3.
|
|
34
|
+
ruby: ['3.2', '3.3', '3.4', '4.0']
|
|
35
35
|
runs-on: ubuntu-latest
|
|
36
36
|
steps:
|
|
37
37
|
- uses: actions/checkout@v4
|
|
@@ -39,7 +39,7 @@ jobs:
|
|
|
39
39
|
uses: ruby/setup-ruby@v1
|
|
40
40
|
with:
|
|
41
41
|
ruby-version: ${{ matrix.ruby }}
|
|
42
|
-
bundler: '2.
|
|
42
|
+
bundler: '2.7.2'
|
|
43
43
|
bundler-cache: true
|
|
44
44
|
- name: Run tests
|
|
45
45
|
run: bundle exec rake test
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
### Breaking
|
|
4
|
+
- Require Ruby >= 3.2 (dropped 3.1 support)
|
|
5
|
+
|
|
6
|
+
### Fixed
|
|
7
|
+
- Contrived slow tests called nonexistent class methods, misclassifying as broken instead of slow/painful
|
|
8
|
+
- ConfigurationTest reset global thresholds without restoring, causing test-order-dependent JSON output inconsistencies
|
|
9
|
+
- Raised test slow thresholds to eliminate false positive slow warnings on normal tests
|
|
10
|
+
- Updated bundler from 2.6.9 to 2.7.2 to fix constant redefinition warnings with Ruby 3.4
|
|
11
|
+
|
|
3
12
|
## [1.3.0] - 2026-01-29
|
|
4
13
|
|
|
5
14
|
### Added
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
minitest-heat (
|
|
4
|
+
minitest-heat (2.0.0)
|
|
5
5
|
minitest
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -12,14 +12,12 @@ GEM
|
|
|
12
12
|
bundler-audit (0.9.3)
|
|
13
13
|
bundler (>= 1.2.0)
|
|
14
14
|
thor (~> 1.0)
|
|
15
|
-
cgi (0.5.1)
|
|
16
15
|
date (3.5.1)
|
|
17
16
|
debug (1.11.1)
|
|
18
17
|
irb (~> 1.10)
|
|
19
18
|
reline (>= 0.3.8)
|
|
20
19
|
docile (1.4.1)
|
|
21
|
-
erb (
|
|
22
|
-
cgi (>= 0.3.3)
|
|
20
|
+
erb (6.0.1)
|
|
23
21
|
io-console (0.8.2)
|
|
24
22
|
irb (1.16.0)
|
|
25
23
|
pp (>= 0.6.0)
|
|
@@ -36,7 +34,7 @@ GEM
|
|
|
36
34
|
pp (0.6.3)
|
|
37
35
|
prettyprint
|
|
38
36
|
prettyprint (0.2.0)
|
|
39
|
-
prism (1.
|
|
37
|
+
prism (1.9.0)
|
|
40
38
|
psych (5.3.1)
|
|
41
39
|
date
|
|
42
40
|
stringio
|
|
@@ -93,7 +91,6 @@ DEPENDENCIES
|
|
|
93
91
|
awesome_print
|
|
94
92
|
bundler-audit (>= 0.9)
|
|
95
93
|
debug
|
|
96
|
-
erb (< 5.0)
|
|
97
94
|
minitest (~> 5.0)
|
|
98
95
|
minitest-heat!
|
|
99
96
|
rake (>= 13.0)
|
|
@@ -104,4 +101,4 @@ DEPENDENCIES
|
|
|
104
101
|
simplecov_json_formatter
|
|
105
102
|
|
|
106
103
|
BUNDLED WITH
|
|
107
|
-
2.
|
|
104
|
+
2.7.2
|
data/RELEASING.md
CHANGED
|
@@ -138,7 +138,6 @@ This builds the gem, displays its contents and size, then cleans up.
|
|
|
138
138
|
2. Edit the `main` ruleset (or create one targeting the default branch)
|
|
139
139
|
3. Enable "Require status checks to pass" with these checks:
|
|
140
140
|
- `Security`
|
|
141
|
-
- `Test (Ruby 3.1)`
|
|
142
141
|
- `Test (Ruby 3.2)`
|
|
143
142
|
- `Test (Ruby 3.3)`
|
|
144
143
|
- `Test (Ruby 3.4)`
|
data/minitest-heat.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.description = 'Presents test results in a visual manner to guide you to where to look first.'
|
|
13
13
|
spec.homepage = 'https://github.com/garrettdimon/minitest-heat'
|
|
14
14
|
spec.license = 'MIT'
|
|
15
|
-
spec.required_ruby_version = Gem::Requirement.new('>= 3.
|
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 3.2')
|
|
16
16
|
|
|
17
17
|
spec.metadata['homepage_uri'] = spec.homepage
|
|
18
18
|
spec.metadata['bug_tracker_uri'] = 'https://github.com/garrettdimon/minitest-heat/issues'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: minitest-heat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Garrett Dimon
|
|
@@ -187,7 +187,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
187
187
|
requirements:
|
|
188
188
|
- - ">="
|
|
189
189
|
- !ruby/object:Gem::Version
|
|
190
|
-
version: '3.
|
|
190
|
+
version: '3.2'
|
|
191
191
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
192
192
|
requirements:
|
|
193
193
|
- - ">="
|