CI: disable the test_terminal_resize2() test for GH CI in gui mode (#13615)
becaues it tends to time-out CI for unknown reasons.
related: #13566
Signed-off-by: Christian Brabandt <cb@256bit.org>
diff --git a/src/testdir/test_terminal2.vim b/src/testdir/test_terminal2.vim
index b349867..9798c51 100644
--- a/src/testdir/test_terminal2.vim
+++ b/src/testdir/test_terminal2.vim
@@ -283,8 +283,12 @@
set statusline&
endfunc
+" TODO: This test starts timing out in Github CI Gui test, why????
func Test_terminal_resize2()
CheckNotMSWindows
+ if has('gui_running') && expand('$GITHUB_ACTIONS') ==# 'true'
+ throw 'Skipped: FIXME: this test times-out in Github Actions CI with GUI. Why?'
+ endif
set statusline=x
terminal
call assert_equal(2, winnr('$'))