test-bundled-gems.rb: show failed gems at last

This commit is contained in:
Nobuyoshi Nakada 2020-12-03 21:31:44 +09:00
Родитель d3c685f0b5
Коммит 2a99fea89e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -8,6 +8,7 @@ rake = File.realpath("../../.bundle/bin/rake", __FILE__)
gem_dir = File.realpath('../../gems', __FILE__) gem_dir = File.realpath('../../gems', __FILE__)
exit_code = 0 exit_code = 0
ruby = ENV['RUBY'] || RbConfig.ruby ruby = ENV['RUBY'] || RbConfig.ruby
failed = []
File.foreach("#{gem_dir}/bundled_gems") do |line| File.foreach("#{gem_dir}/bundled_gems") do |line|
next if /^\s*(?:#|$)/ =~ line next if /^\s*(?:#|$)/ =~ line
gem = line.split.first gem = line.split.first
@ -44,9 +45,11 @@ File.foreach("#{gem_dir}/bundled_gems") do |line|
if allowed_failures.include?(gem) if allowed_failures.include?(gem)
puts "Ignoring test failures for #{gem} due to \$TEST_BUNDLED_GEMS_ALLOW_FAILURES" puts "Ignoring test failures for #{gem} due to \$TEST_BUNDLED_GEMS_ALLOW_FAILURES"
else else
failed << gem
exit_code = $?.exitstatus exit_code = $?.exitstatus
end end
end end
end end
puts "Failed gems: #{failed.join(', ')}" unless failed.empty?
exit exit_code exit exit_code