Update the latest results of test-bundled-gems

This commit is contained in:
Hiroshi SHIBATA 2025-12-24 11:56:41 +09:00
parent ab683d56bc
commit 202028aea1
Notes: git 2025-12-24 03:25:16 +00:00

View File

@ -10,11 +10,9 @@ ENV.delete("GNUMAKEFLAGS")
github_actions = ENV["GITHUB_ACTIONS"] == "true"
DEFAULT_ALLOWED_FAILURES = RUBY_PLATFORM =~ /mswin|mingw/ ? [
'rbs',
'debug',
'irb',
'power_assert',
'net-imap',
'csv',
] : []
allowed_failures = ENV['TEST_BUNDLED_GEMS_ALLOW_FAILURES'] || ''
allowed_failures = allowed_failures.split(',').concat(DEFAULT_ALLOWED_FAILURES).uniq.reject(&:empty?)