From 857a07f36ae0b367a7f10670876edc1863bc9c06 Mon Sep 17 00:00:00 2001 From: w0rp Date: Sun, 1 Jul 2018 12:18:42 +0100 Subject: [PATCH] Try running tests in parallel again --- .travis.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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"