From 4342b81e8d0f253015e3a3fa72f5fc00f9a2f30d Mon Sep 17 00:00:00 2001 From: James McCoy Date: Tue, 30 Nov 2021 22:27:31 -0500 Subject: test(api): mark "notify cancels stale events on channel close" fragile This is already skipped in all CI environments, so it should also be skipped in environments that don't like fragile tests. Since there's no convenient way to express these concisely, add the explicit fragile skip. --- test/functional/api/server_notifications_spec.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/functional/api/server_notifications_spec.lua b/test/functional/api/server_notifications_spec.lua index 6367cc5caa..1c00f001ff 100644 --- a/test/functional/api/server_notifications_spec.lua +++ b/test/functional/api/server_notifications_spec.lua @@ -81,6 +81,8 @@ describe('notify', function() if isCI() then pending('hangs on CI #14083 #15251') return + elseif helpers.skip_fragile(pending) then + return end if helpers.pending_win32(pending) then return end local catchan = eval("jobstart(['cat'], {'rpc': v:true})") -- cgit