Enabled the released versions of bundled gems that are working fine with Ruby HEAD

This commit is contained in:
Hiroshi SHIBATA 2025-06-18 15:22:31 +09:00
parent 13a2b9fa2d
commit 332f83d1ab
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -10,7 +10,7 @@ github_actions = ENV["GITHUB_ACTIONS"] == "true"
allowed_failures = ENV['TEST_BUNDLED_GEMS_ALLOW_FAILURES'] || ''
if RUBY_PLATFORM =~ /mswin|mingw/
allowed_failures = [allowed_failures, "rbs,debug,irb,net-imap"].join(',')
allowed_failures = [allowed_failures, "irb"].join(',')
end
allowed_failures = allowed_failures.split(',').uniq.reject(&:empty?)