From: Hiroshi SHIBATA Date: Wed, 30 Apr 2025 06:13:51 +0000 (+0900) Subject: Re-enabled repl_type_completor test with upstream fix X-Git-Url: https://repo.or.cz/ruby.git/commitdiff_plain/39ba16e5a1dea831e2f73c34a735249a4d4cb0a9 Re-enabled repl_type_completor test with upstream fix https://github.com/ruby/repl_type_completor/pull/62 --- diff --git a/gems/bundled_gems b/gems/bundled_gems index 73999cfb26..0c5bad099d 100644 --- a/gems/bundled_gems +++ b/gems/bundled_gems @@ -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 diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb index b3a220b43b..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, "rbs,debug,irb,repl_type_completor"].join(',') + allowed_failures = [allowed_failures, "rbs,debug,irb"].join(',') end allowed_failures = allowed_failures.split(',').uniq.reject(&:empty?)