Skip isolated test runs on older rubies

This commit is contained in:
Matthew Draper 2017-03-23 03:51:03 +10:30
parent bb04814791
commit 22deb92216
1 changed files with 1 additions and 0 deletions

View File

@ -152,6 +152,7 @@ results = {}
ENV["GEM"].split(",").each do |gem|
[false, true].each do |isolated|
next if ENV["TRAVIS_PULL_REQUEST"] && ENV["TRAVIS_PULL_REQUEST"] != "false" && isolated
next if RUBY_VERSION < "2.4" && isolated
next if gem == "railties" && isolated
next if gem == "ac" && isolated
next if gem == "ac:integration" && isolated