File tree 2 files changed +22
-0
lines changed
2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -291,4 +291,11 @@ func CheckAllOf(...)
291
291
endfor
292
292
endfunc
293
293
294
+ " Check if running under Github Actions
295
+ command CheckGithubActions call CheckGithubActions ()
296
+ func CheckGithubActions ()
297
+ if expand (' $GITHUB_ACTIONS' ) == # ' true'
298
+ throw ' Skipped: FIXME: this test doesn' t work on Github Actions CI'
299
+ endif
300
+ endfunc
294
301
" vim: shiftwidth = 2 sts = 2 expandtab
Original file line number Diff line number Diff line change @@ -932,6 +932,11 @@ endfunc
932
932
933
933
func Test_terminal_eof_arg ()
934
934
call CheckPython (s: python )
935
+ if has (" win32" )
936
+ " This tests started to fail on Github Actions Windows
937
+ " see: actions/runner-images#11512
938
+ CheckGithubActions
939
+ endif
935
940
let g: test_is_flaky = 1
936
941
937
942
call setline (1 , [' print("hello")' ])
@@ -949,6 +954,11 @@ func Test_terminal_eof_arg()
949
954
endfunc
950
955
951
956
func Test_terminal_eof_arg_win32_ctrl_z ()
957
+ if has (" win32" )
958
+ " This tests started to fail on Github Actions Windows
959
+ " see: actions/runner-images#11512
960
+ CheckGithubActions
961
+ endif
952
962
CheckMSWindows
953
963
call CheckPython (s: python )
954
964
let g: test_is_flaky = 1
@@ -962,6 +972,11 @@ endfunc
962
972
963
973
func Test_terminal_duplicate_eof_arg ()
964
974
call CheckPython (s: python )
975
+ if has (" win32" )
976
+ " This tests started to fail on Github Actions Windows
977
+ " see: actions/runner-images#11512
978
+ CheckGithubActions
979
+ endif
965
980
let g: test_is_flaky = 1
966
981
967
982
" Check the last specified ++eof arg is used and does not leak memory.
You can’t perform that action at this time.
0 commit comments