aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2017-03-23 03:51:03 +1030
committerMatthew Draper <matthew@trebex.net>2017-03-23 03:51:03 +1030
commit22deb92216d83f64fa8e948abe305309b327b33a (patch)
treed8a279d2a982adca6f21c3636c6f4b92b2af2646 /ci
parentbb048147912d7ea8c301acd6468e9f869dd0acad (diff)
downloadrails-22deb92216d83f64fa8e948abe305309b327b33a.tar.gz
rails-22deb92216d83f64fa8e948abe305309b327b33a.tar.bz2
rails-22deb92216d83f64fa8e948abe305309b327b33a.zip
Skip isolated test runs on older rubies
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 eb2890ca70..bb87c8f4ad 100755
--- a/ci/travis.rb
+++ b/ci/travis.rb
@@ -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