summaryrefslogtreecommitdiff
path: root/run-tests
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-07-23 22:28:22 +0100
committerw0rp <devw0rp@gmail.com>2018-07-23 22:28:22 +0100
commit338c233710b38f624ac9189ce3d456a0d52ff972 (patch)
tree316c15b8350bda55a6ce3a71874ed8cf8790e8f8 /run-tests
parent9ade65666121b0889d774bdea3b4ce2e176ff915 (diff)
downloadale-338c233710b38f624ac9189ce3d456a0d52ff972.zip
Split Vim and Neovim tests into separate builds
Diffstat (limited to 'run-tests')
-rwxr-xr-xrun-tests6
1 files changed, 6 insertions, 0 deletions
diff --git a/run-tests b/run-tests
index 06fa3547..b64b7195 100755
--- a/run-tests
+++ b/run-tests
@@ -56,6 +56,11 @@ 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
@@ -95,6 +100,7 @@ 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'