aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2014-09-20 19:17:12 +0930
committerMatthew Draper <matthew@trebex.net>2014-09-20 19:21:35 +0930
commitc7f0cd6a79e6ee060df982dc0834365b63e53a2c (patch)
treeb6d615ece6e72abc06813fb04dc53816c778ed86 /ci
parent1a2e3a0431651a44ab39e0881237c182770e29ed (diff)
downloadrails-c7f0cd6a79e6ee060df982dc0834365b63e53a2c.tar.gz
rails-c7f0cd6a79e6ee060df982dc0834365b63e53a2c.tar.bz2
rails-c7f0cd6a79e6ee060df982dc0834365b63e53a2c.zip
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.
Diffstat (limited to 'ci')
-rwxr-xr-xci/travis.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/ci/travis.rb b/ci/travis.rb
index 3ccbd1dad4..a1920a7a1f 100755
--- a/ci/travis.rb
+++ b/ci/travis.rb
@@ -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