diff options
author | Hiroshi SHIBATA <[email protected]> | 2025-06-18 15:22:31 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2025-06-18 16:13:12 +0900 |
commit | 332f83d1ab418cd82ba8da542fce73e611da8141 (patch) | |
tree | 6854ebe4165f1c972dc478c3b9660119dafaf4eb | |
parent | 13a2b9fa2de9d5aa654871570ef416af90ef424d (diff) |
Enabled the released versions of bundled gems that are working fine with Ruby HEAD
-rw-r--r-- | tool/test-bundled-gems.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb index 22d832dab0..a0dcc5625e 100644 --- a/tool/test-bundled-gems.rb +++ b/tool/test-bundled-gems.rb @@ -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?) |