diff --git a/.travis.yml b/.travis.yml index cc9d6269..8193f943 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,9 @@ sudo: required services: - docker language: generic -script: - - "./run-tests --vim-only" - - "./run-tests --neovim-02-only" - - "./run-tests --neovim-03-only" - - "./run-tests --linters-only" +env: + - TESTOPTIONS=--vim-only + - TESTOPTIONS=--neovim-02-only + - TESTOPTIONS=--neovim-03-only + - TESTOPTIONS=--linters-only +script: "./run-tests $TESTOPTIONS"