2019-09-29 06:16:10 -04:00
|
|
|
require 'rbconfig'
|
|
|
|
|
|
|
|
allowed_failures = ENV['TEST_BUNDLED_GEMS_ALLOW_FAILURES'] || ''
|
|
|
|
allowed_failures = allowed_failures.split(',').reject(&:empty?)
|
|
|
|
|
2020-01-12 22:27:24 -05:00
|
|
|
rake = File.realpath("../../.bundle/bin/rake", __FILE__)
|
|
|
|
gem_dir = File.realpath('../../gems', __FILE__)
|
2019-09-29 06:16:10 -04:00
|
|
|
exit_code = 0
|
2019-11-04 18:26:10 -05:00
|
|
|
ruby = ENV['RUBY'] || RbConfig.ruby
|
2019-10-28 06:14:38 -04:00
|
|
|
File.foreach("#{gem_dir}/bundled_gems") do |line|
|
2019-09-29 06:16:10 -04:00
|
|
|
gem = line.split.first
|
|
|
|
puts "\nTesting the #{gem} gem"
|
|
|
|
|
2020-01-12 22:27:24 -05:00
|
|
|
test_command = "#{ruby} -C #{gem_dir}/src/#{gem} -Ilib #{rake}"
|
2019-09-29 06:16:10 -04:00
|
|
|
puts test_command
|
|
|
|
system test_command
|
|
|
|
|
|
|
|
unless $?.success?
|
|
|
|
puts "Tests failed with exit code #{$?.exitstatus}"
|
|
|
|
if allowed_failures.include?(gem)
|
|
|
|
puts "Ignoring test failures for #{gem} due to \$TEST_BUNDLED_GEMS_ALLOW_FAILURES"
|
|
|
|
else
|
|
|
|
exit_code = $?.exitstatus
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
exit exit_code
|