summaryrefslogtreecommitdiff
path: root/run-tests
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-07-23 10:45:22 +0100
committerw0rp <devw0rp@gmail.com>2018-07-23 10:45:22 +0100
commitf6d18a0b10b6aa682ebdbfaba623548aa51aee29 (patch)
tree6a2878d48a94950f9237db9320cdfb264d9f8199 /run-tests
parent7bf3a749d088964b2ae42e8019dc6a570173d1bf (diff)
downloadale-f6d18a0b10b6aa682ebdbfaba623548aa51aee29.zip
Skip tests for Vim 8.1 for now
Diffstat (limited to 'run-tests')
-rwxr-xr-xrun-tests5
1 files changed, 5 insertions, 0 deletions
diff --git a/run-tests b/run-tests
index ad375693..eb0c633d 100755
--- a/run-tests
+++ b/run-tests
@@ -120,6 +120,11 @@ file_number=0
pid_list=''
for vim in $(docker run --rm "$DOCKER_RUN_IMAGE" ls /vim-build/bin | grep '^neovim\|^vim' ); do
+ # Skip Vim 8.1 for now.
+ if [[ $vim =~ ^vim-v8.1 ]]; then
+ continue
+ fi
+
if ( [[ $vim =~ ^vim ]] && ((run_vim_tests)) ) \
|| ( [[ $vim =~ ^neovim-v0.2 ]] && ((run_neovim_02_tests)) ) \
|| ( [[ $vim =~ ^neovim-v0.3 ]] && ((run_neovim_03_tests)) ); then