summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-07-01 12:18:42 +0100
committerw0rp <devw0rp@gmail.com>2018-07-01 12:18:42 +0100
commit857a07f36ae0b367a7f10670876edc1863bc9c06 (patch)
treeb42e69eb98012318a28834ad5dcab2588a5be81f
parent26aa0cf35842c1cdcf6a57d3406fe2e8afff1bb9 (diff)
downloadale-857a07f36ae0b367a7f10670876edc1863bc9c06.zip
Try running tests in parallel again
-rw-r--r--.travis.yml11
1 files 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"