Skip to content

Commit dc42fa3

Browse files
authored
Merge pull request #782 from ychin/temp_disable_bad_unit_tests
Disable timer & channel unit tests since they have been breaking CI
2 parents ea5fe03 + 1447ebf commit dc42fa3

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

src/testdir/test_channel.vim

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ if !has('channel')
44
finish
55
endif
66

7+
if has('gui_macvim')
8+
" MacVim's currently doesn't always pass these tests. Disable these tests
9+
" for now before a more proper fix is implemented.
10+
finish
11+
endif
12+
713
source shared.vim
814

915
let s:python = PythonProg()

src/testdir/test_timers.vim

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ if !has('timers')
44
finish
55
endif
66

7+
if has('gui_macvim') && has('gui_running')
8+
" MacVim's GUI currently doesn't always pass these tests. Disable these
9+
" tests for now when testing in GUI mode before a more proper fix is
10+
" implemented.
11+
finish
12+
endif
13+
714
source shared.vim
815
source screendump.vim
916

0 commit comments

Comments
 (0)