summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-07-23 22:33:03 +0100
committerw0rp <devw0rp@gmail.com>2018-07-23 22:33:03 +0100
commitd7d54d09dab4df733caa344006b334f3f4a918dd (patch)
tree70372420d1d1ae399c8e442cd3fe717dc144d897
parent338c233710b38f624ac9189ce3d456a0d52ff972 (diff)
downloadale-d7d54d09dab4df733caa344006b334f3f4a918dd.zip
Try 3 builds on Travis CI
-rw-r--r--.travis.yml3
-rwxr-xr-xrun-tests6
2 files changed, 2 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index e236b9ec..8b076158 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,7 +4,8 @@ services:
- docker
language: generic
env:
- - OPTIONS=--no-neovim
+ - OPTIONS=--vim-only
- OPTIONS=--neovim-only
+ - OPTIONS=--linters-only
script: |
./run-tests -v $OPTIONS
diff --git a/run-tests b/run-tests
index b64b7195..06fa3547 100755
--- a/run-tests
+++ b/run-tests
@@ -56,11 +56,6 @@ while [ $# -ne 0 ]; do
run_linters=0
shift
;;
- --no-neovim)
- run_neovim_02_tests=0
- run_neovim_03_tests=0
- shift
- ;;
--vim-only)
run_neovim_02_tests=0
run_neovim_03_tests=0
@@ -100,7 +95,6 @@ while [ $# -ne 0 ]; do
echo ' --neovim-only Run tests only for NeoVim 0.2 and 0.3'
echo ' --neovim-02-only Run tests only for NeoVim 0.2'
echo ' --neovim-03-only Run tests only for NeoVim 0.3'
- echo ' --no-neovim Skip NeoVim tests'
echo ' --vim-only Run tests only for Vim 8.0 and 8.1'
echo ' --vim-80-only Run tests only for Vim 8.0'
echo ' --vim-81-only Run tests only for Vim 8.1'