summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2025-04-07 13:56:36 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2025-04-07 15:10:58 +0900
commitd485638a08a4561cd2f9c28d29b6d08d43dc5621 (patch)
tree6d2d26fb654018e36831e03ea8e920dc8a1e8dda
parentf70bf7840370c4739ba11ddfdc35297086257170 (diff)
Allow win32ole test failure
``` D:/a/ruby/ruby/src/gems/src/win32ole/test/win32ole/test_win32ole_event.rb:80:in 'TestWIN32OLE_EVENT_SWbemSink#default_handler': undefined method '+' for nil (NoMethodError) ``` https://github.com/ruby/ruby/actions/runs/14299035797/job/40072083885?pr=13078
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/13078
-rw-r--r--tool/test-bundled-gems.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb
index a71d7dce7e..b4571229ae 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"].join(',')
+ allowed_failures = [allowed_failures, "win32ole,rbs,debug,irb"].join(',')
end
allowed_failures = allowed_failures.split(',').uniq.reject(&:empty?)