From 9f61541f7624298be0c379ff61b66fc8470423e2 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Wed, 9 Apr 2025 15:18:50 +0900 Subject: [PATCH] Re-enabled to test at win32ole --- gems/bundled_gems | 2 +- tool/test-bundled-gems.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gems/bundled_gems b/gems/bundled_gems index 99030f1e52..7c8f4f919d 100644 --- a/gems/bundled_gems +++ b/gems/bundled_gems @@ -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 diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb index b4571229ae..a71d7dce7e 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, "win32ole,rbs,debug,irb"].join(',') + allowed_failures = [allowed_failures, "rbs,debug,irb"].join(',') end allowed_failures = allowed_failures.split(',').uniq.reject(&:empty?)