1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Only run isolated tests on the latest stable ruby: that's now 2.6

Follow up #34795.

See also f1a30d8ad5.
This commit is contained in:
Ryuta Kamizono 2018-12-27 19:05:41 +09:00
parent 6719d37be9
commit 50d9c06b01

View file

@ -145,7 +145,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.5" && isolated
next if RUBY_VERSION < "2.6" && isolated
next if gem == "railties" && isolated
next if gem == "actioncable" && isolated
next if gem == "actioncable:integration" && isolated