From 68e2022b5b23935db6e02e18270c6fb830945b17 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 19 Dec 2024 11:50:41 +0900 Subject: [PATCH] The test of net-imap is passed with Windows --- tool/test-bundled-gems.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb index 5bd9492f9c..78d2ed002e 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, "net-imap,net-smtp,rbs,debug"].join(',') + allowed_failures = [allowed_failures, "net-smtp,rbs,debug"].join(',') end allowed_failures = allowed_failures.split(',').uniq.reject(&:empty?)