Disable timer & channel unit tests since they have been breaking CI

MacVim seems to have some timing issues with test_channel and
test_timers and they frequently fail in Travis CI. Disable them for now
to avoid build break red herring.

https://github.com/macvim-dev/macvim/issues/778 will track fixing this.
This commit is contained in:
Yee Cheng Chin
2018-11-17 00:42:12 -08:00
parent ea5fe03309
commit 1447ebfdfb
2 changed files with 13 additions and 0 deletions
+6
View File
@@ -4,6 +4,12 @@ if !has('channel')
finish
endif
if has('gui_macvim')
" MacVim's currently doesn't always pass these tests. Disable these tests
" for now before a more proper fix is implemented.
finish
endif
source shared.vim
let s:python = PythonProg()
+7
View File
@@ -4,6 +4,13 @@ if !has('timers')
finish
endif
if has('gui_macvim') && has('gui_running')
" MacVim's GUI currently doesn't always pass these tests. Disable these
" tests for now when testing in GUI mode before a more proper fix is
" implemented.
finish
endif
source shared.vim
source screendump.vim