diff options
author | Matthew Draper <matthew@trebex.net> | 2018-01-25 09:55:10 +1030 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2018-01-25 09:55:10 +1030 |
commit | f1a30d8ad5ae17e6202fd3a126027378773dcaea (patch) | |
tree | 5f1c5d095290708c8da50c51a5f439eaf7f63c13 | |
parent | e981adef44b37078e7cba0b4df5ffd6cf2c3f47d (diff) | |
download | rails-f1a30d8ad5ae17e6202fd3a126027378773dcaea.tar.gz rails-f1a30d8ad5ae17e6202fd3a126027378773dcaea.tar.bz2 rails-f1a30d8ad5ae17e6202fd3a126027378773dcaea.zip |
Only run isolated tests on the latest stable ruby: that's now 2.5
-rwxr-xr-x | ci/travis.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/travis.rb b/ci/travis.rb index f521ef3cf6..861063afa5 100755 --- a/ci/travis.rb +++ b/ci/travis.rb @@ -159,7 +159,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 RUBY_VERSION < "2.5" && isolated next if gem == "railties" && isolated next if gem == "ac" && isolated next if gem == "ac:integration" && isolated |