Revert "tool/test-bundled-gems.rb: Use the bundled RBS code to test TypeProf"

This reverts commit 22deda43cb.

It was incomplete. Sorry!
This commit is contained in:
Yusuke Endoh 2021-08-24 18:07:50 +09:00
Родитель 80597f2544
Коммит 4a6b5f4622
2 изменённых файлов: 2 добавлений и 8 удалений

Просмотреть файл

@ -1372,7 +1372,7 @@ no-test-bundled-gems-prepare: no-test-bundled-gems-precheck
yes-test-bundled-gems-prepare: yes-test-bundled-gems-precheck
$(ACTIONS_GROUP)
$(XRUBY) -C "$(srcdir)" bin/gem install --no-document \
--install-dir .bundle --conservative "bundler" "minitest:~> 5" "test-unit" "rake" "hoe" "yard" "pry" "packnga" "rexml" "json-schema"
--install-dir .bundle --conservative "bundler" "minitest:~> 5" "test-unit" "rake" "hoe" "yard" "pry" "packnga" "rexml" "json-schema" "rbs"
$(ACTIONS_ENDGROUP)
PREPARE_BUNDLED_GEMS = test-bundled-gems-prepare

Просмотреть файл

@ -17,13 +17,7 @@ File.foreach("#{gem_dir}/bundled_gems") do |line|
next if ARGV.any? {|pat| !File.fnmatch?(pat, gem)}
puts "#{github_actions ? "##[group]" : "\n"}Testing the #{gem} gem"
test_command = "#{ruby} -C #{gem_dir}/src/#{gem} -Ilib"
if gem == "typeprof"
#test_command << " -I../rbs/lib"
end
test_command << " #{rake} test"
test_command = "#{ruby} -C #{gem_dir}/src/#{gem} -Ilib #{rake} test"
first_timeout = 600 # 10min
if gem == "rbs"