mirror of https://github.com/dense-analysis/ale
Skip tests for Vim 8.1 for now
This commit is contained in:
parent
7bf3a749d0
commit
f6d18a0b10
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue