From b8af91bf17151664f2efa17932b07b1dbea32d00 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Sat, 20 Dec 2025 06:41:29 +0000 Subject: [PATCH] Pin minitest < 6.0 to avoid `bin/rails test` startup failure in 6.0-stable (#43609). git-svn-id: https://svn.redmine.org/redmine/branches/6.0-stable@24226 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index 3cff63c52..a6d923d24 100644 --- a/Gemfile +++ b/Gemfile @@ -115,6 +115,8 @@ group :test do gem 'rubocop-performance', '~> 1.22.0', require: false gem 'rubocop-rails', '~> 2.27.0', require: false gem 'bundle-audit', require: false + # `bin/rails test` fails at startup with minitest >= 6.0 + gem 'minitest', '< 6.0' end local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")