Re-enabled repl_type_completor test with upstream fix
authorHiroshi SHIBATA <[email protected]>
Wed, 30 Apr 2025 06:13:51 +0000 (30 15:13 +0900)
committerHiroshi SHIBATA <[email protected]>
Wed, 30 Apr 2025 07:59:25 +0000 (30 16:59 +0900)
https://github.com/ruby/repl_type_completor/pull/62

gems/bundled_gems
tool/test-bundled-gems.rb

index 73999cf..0c5bad0 100644 (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
index b3a220b..a71d7dc 100644 (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?)