Re-enabled repl_type_completor test with upstream fix

https://github.com/ruby/repl_type_completor/pull/62
This commit is contained in:
Hiroshi SHIBATA 2025-04-30 15:13:51 +09:00
parent 8b4017584b
commit 39ba16e5a1
Notes: git 2025-04-30 07:59:40 +00:00
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ drb 2.2.1 https://github.com/ruby/drb
nkf 0.2.0 https://github.com/ruby/nkf
syslog 0.3.0 https://github.com/ruby/syslog
csv 3.3.4 https://github.com/ruby/csv
repl_type_completor 0.1.11 https://github.com/ruby/repl_type_completor
repl_type_completor 0.1.11 https://github.com/ruby/repl_type_completor 25108aa8d69ddaba0b5da3feff1c0035371524b2
ostruct 0.6.1 https://github.com/ruby/ostruct
pstore 0.2.0 https://github.com/ruby/pstore
benchmark 0.4.0 https://github.com/ruby/benchmark

View File

@ -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,repl_type_completor"].join(',')
allowed_failures = [allowed_failures, "rbs,debug,irb"].join(',')
end
allowed_failures = allowed_failures.split(',').uniq.reject(&:empty?)