From f809664f89c7437d2466eae9772c918d22fb77ae Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Fri, 27 Aug 2021 03:59:13 -0700 Subject: ci: skip "cancels stale events on channel close" #15278 - ref #14083 #15251 - also: docs: naming conventions --- test/functional/api/server_notifications_spec.lua | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/functional/api/server_notifications_spec.lua') diff --git a/test/functional/api/server_notifications_spec.lua b/test/functional/api/server_notifications_spec.lua index 9ee2570798..047bbfeb21 100644 --- a/test/functional/api/server_notifications_spec.lua +++ b/test/functional/api/server_notifications_spec.lua @@ -5,6 +5,7 @@ local eq, clear, eval, command, nvim, next_msg = local meths = helpers.meths local exec_lua = helpers.exec_lua local retry = helpers.retry +local isCI = helpers.isCI describe('notify', function() local channel @@ -76,6 +77,10 @@ describe('notify', function() end) it('cancels stale events on channel close', function() + if isCI() then + pending('hangs on CI #14083 #15251') + return + end if helpers.pending_win32(pending) then return end local catchan = eval("jobstart(['cat'], {'rpc': v:true})") eq({id=catchan, stream='job', mode='rpc', client = {}}, exec_lua ([[ -- cgit