From 78ee874ae44425f83b9fb6999080dc98cf00e50c Mon Sep 17 00:00:00 2001 From: Azuna <36605286+azunaVT@users.noreply.github.com> Date: Mon, 12 Jan 2026 03:45:58 +0000 Subject: [PATCH 1/2] Upgrading minitest to v6 after Rails upgrade to 8.1.2 that hotfixed the MT issues --- Gemfile | 2 +- Gemfile.lock | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 8d05449..d5f8389 100644 --- a/Gemfile +++ b/Gemfile @@ -47,7 +47,7 @@ group :development, :test do # Testing Framework # Minitest 6.0+ is having some issues with how tests are currently written - gem "minitest", "~> 5.0" + gem "minitest", "~> 6.0" gem "minitest-reporters" # Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/] diff --git a/Gemfile.lock b/Gemfile.lock index 67e9dd0..d5ad2ba 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -138,7 +138,8 @@ GEM net-smtp marcel (1.1.0) mini_mime (1.1.5) - minitest (5.27.0) + minitest (6.0.1) + prism (~> 1.5) minitest-reporters (1.7.1) ansi builder @@ -328,7 +329,7 @@ DEPENDENCIES brakeman debug kamal - minitest (~> 5.0) + minitest (~> 6.0) minitest-reporters pg (~> 1.6) puma (>= 5.0) From 94fc5330e7abf053c3e7a9564077153ad9fe2440 Mon Sep 17 00:00:00 2001 From: Azuna <36605286+azunaVT@users.noreply.github.com> Date: Mon, 12 Jan 2026 03:58:50 +0000 Subject: [PATCH 2/2] Removed minitest-reporters since it's broken after update to MT 6.0 --- Gemfile | 1 - Gemfile.lock | 7 ------- test/test_helper.rb | 2 -- 3 files changed, 10 deletions(-) diff --git a/Gemfile b/Gemfile index d5f8389..10afe66 100644 --- a/Gemfile +++ b/Gemfile @@ -48,7 +48,6 @@ group :development, :test do # Testing Framework # Minitest 6.0+ is having some issues with how tests are currently written gem "minitest", "~> 6.0" - gem "minitest-reporters" # Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/] gem "rubocop-rails-omakase", require: false diff --git a/Gemfile.lock b/Gemfile.lock index d5ad2ba..ca37b23 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -75,7 +75,6 @@ GEM securerandom (>= 0.3) tzinfo (~> 2.0, >= 2.0.5) uri (>= 0.13.1) - ansi (1.5.0) ast (2.4.3) base64 (0.3.0) bcrypt (3.1.21) @@ -140,11 +139,6 @@ GEM mini_mime (1.1.5) minitest (6.0.1) prism (~> 1.5) - minitest-reporters (1.7.1) - ansi - builder - minitest (>= 5.0) - ruby-progressbar msgpack (1.8.0) net-imap (0.6.2) date @@ -330,7 +324,6 @@ DEPENDENCIES debug kamal minitest (~> 6.0) - minitest-reporters pg (~> 1.6) puma (>= 5.0) rails (~> 8.1.2) diff --git a/test/test_helper.rb b/test/test_helper.rb index 524d4cf..3891f17 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -2,8 +2,6 @@ require_relative "../config/environment" ActiveRecord::Migration.maintain_test_schema! require "rails/test_help" -require "minitest/reporters" -Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new require "bcrypt"