Pin minitest < 6.0 to avoid bin/rails test startup failure in 5.1-stable (#43609).

git-svn-id: https://svn.redmine.org/redmine/branches/5.1-stable@24227 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2025-12-20 06:43:34 +00:00
parent 52d342b4a6
commit 97ed1b33aa

View File

@@ -119,6 +119,8 @@ group :test do
gem 'rubocop-ast', '~> 1.40.0', require: false
gem 'rubocop-performance', '~> 1.19.0', require: false
gem 'rubocop-rails', '~> 2.22.1', 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")