aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-08-14 21:21:50 -0400
committerGitHub <noreply@github.com>2021-08-14 21:21:50 -0400
commitbcca62a7602807d37cd2344866624dc17ad0debc (patch)
treeb88f897e697dc26446f26f83f7844ba9aee92ef2
parent222cd43222c68ba5376b681d2a5fd7b90da138b0 (diff)
parent84910773140b9a82bc78c577db5b2c7779cc1a36 (diff)
downloadrneovim-bcca62a7602807d37cd2344866624dc17ad0debc.tar.gz
rneovim-bcca62a7602807d37cd2344866624dc17ad0debc.tar.bz2
rneovim-bcca62a7602807d37cd2344866624dc17ad0debc.zip
Merge pull request #15368 from jamessan/fragility
test(lsp): disable finicky test when TEST_SKIP_FRAGILE is set
-rw-r--r--test/functional/plugin/lsp_spec.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua
index 863176bfa9..3c4d01ae74 100644
--- a/test/functional/plugin/lsp_spec.lua
+++ b/test/functional/plugin/lsp_spec.lua
@@ -266,6 +266,8 @@ describe('LSP', function()
if isCI() then
pending('hangs the build on CI #14028, re-enable with freeze timeout #14204')
return
+ elseif helpers.skip_fragile(pending) then
+ return
end
local expected_handlers = {
{NIL, "shutdown", {}, 1, NIL};