summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2025-06-18 17:15:47 +0900
committerHiroshi SHIBATA <[email protected]>2025-06-18 17:15:47 +0900
commit4eaa245fccd3dd9a61fe1b5f114a6fb47907640a (patch)
treeac570bc2192f3b9b6a12fdb3aca34c37e352635c
parent332f83d1ab418cd82ba8da542fce73e611da8141 (diff)
Restore ignored test target for mswin
-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 a0dcc5625e..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, "irb"].join(',')
+ allowed_failures = [allowed_failures, "rbs,debug,irb"].join(',')
end
allowed_failures = allowed_failures.split(',').uniq.reject(&:empty?)