Skip isolated tests for PRs

They're valuable, but the types of errors they catch are fairly rare: we
can address them post-merge when they show up.
This commit is contained in:
Matthew Draper 2014-09-20 19:17:12 +09:30
parent 1a2e3a0431
commit c7f0cd6a79
1 changed files with 1 additions and 0 deletions

View File

@ -107,6 +107,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 gem == 'railties' && isolated
next if gem == 'aj:integration' && isolated