aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-08-14 22:11:01 -0400
committerGitHub <noreply@github.com>2021-08-14 22:11:01 -0400
commit56d86970b0a712c604ba4c6b06f4e82b2fb9cda4 (patch)
tree03e68f1228d3bd49b5fb0af0261706bda34aa4bf
parent6c4f66f381a99ec7c9fb208ab6fc13c14bc7e985 (diff)
parent84910773140b9a82bc78c577db5b2c7779cc1a36 (diff)
downloadrneovim-56d86970b0a712c604ba4c6b06f4e82b2fb9cda4.tar.gz
rneovim-56d86970b0a712c604ba4c6b06f4e82b2fb9cda4.tar.bz2
rneovim-56d86970b0a712c604ba4c6b06f4e82b2fb9cda4.zip
Merge pull request #15375 from jamessan/fragility
[release-0.5] 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 35cc2d3075..508a9f2aed 100644
--- a/test/functional/plugin/lsp_spec.lua
+++ b/test/functional/plugin/lsp_spec.lua
@@ -265,6 +265,8 @@ describe('LSP', function()
if 'openbsd' == helpers.uname() then
pending('hangs the build on openbsd #14028, re-enable with freeze timeout #14204')
return
+ elseif helpers.skip_fragile(pending) then
+ return
end
local expected_handlers = {
{NIL, "shutdown", {}, 1, NIL};