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
This commit is contained in:
Go MAEDA
2025-12-20 06:41:29 +00:00
parent 98fb4335c4
commit b8af91bf17

View File

@@ -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")