From 176be587403486acbdbc50459c7177f5c087ce9b Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Tue, 19 Sep 2017 02:42:06 +0200 Subject: [PATCH] Travis: Use default script step; latest versions in matrix (#1414) * Travis: Use default script step - move TESTOPTS=-v to a global env instead * Travis: ruby 2.2.8, 2.3.5, 2.4.2 --- .travis.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 958d1563d6..3e84d3289a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,14 +7,13 @@ before_install: # bundler installation needed for jruby-head # https://github.com/travis-ci/travis-ci/issues/5861 - gem install bundler -script: "TESTOPTS=-v bundle exec rake" branches: only: - "master" rvm: - - 2.2.7 - - 2.3.4 - - 2.4.1 + - 2.2.8 + - 2.3.5 + - 2.4.2 - ruby-head - jruby-9.1.13.0 - jruby-head @@ -28,3 +27,6 @@ matrix: - rvm: jruby-head - rvm: rbx-3 - rvm: ruby-head +env: + global: + - TESTOPTS="-v"