diff options
author | Hiroshi SHIBATA <[email protected]> | 2025-06-18 17:15:47 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2025-06-18 17:15:47 +0900 |
commit | 4eaa245fccd3dd9a61fe1b5f114a6fb47907640a (patch) | |
tree | ac570bc2192f3b9b6a12fdb3aca34c37e352635c | |
parent | 332f83d1ab418cd82ba8da542fce73e611da8141 (diff) |
Restore ignored test target for mswin
-rw-r--r-- | tool/test-bundled-gems.rb | 2 |
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?) |