Re-enabled to test at win32ole

This commit is contained in:
Hiroshi SHIBATA 2025-04-09 15:18:50 +09:00
parent 8ab517698a
commit 9f61541f76
Notes: git 2025-04-09 06:51:24 +00:00
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ pstore 0.2.0 https://github.com/ruby/pstore
benchmark 0.4.0 https://github.com/ruby/benchmark
logger 1.7.0 https://github.com/ruby/logger
rdoc 6.13.1 https://github.com/ruby/rdoc
win32ole 1.9.1 https://github.com/ruby/win32ole
win32ole 1.9.1 https://github.com/ruby/win32ole 654b712442b76d2c7729623982168b2f250e3a77
irb 1.15.2 https://github.com/ruby/irb
reline 0.6.1 https://github.com/ruby/reline
readline 0.0.4 https://github.com/ruby/readline

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, "win32ole,rbs,debug,irb"].join(',')
allowed_failures = [allowed_failures, "rbs,debug,irb"].join(',')
end
allowed_failures = allowed_failures.split(',').uniq.reject(&:empty?)