diff options
author | James McCoy <jamessan@jamessan.com> | 2021-08-14 22:11:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-14 22:11:01 -0400 |
commit | 56d86970b0a712c604ba4c6b06f4e82b2fb9cda4 (patch) | |
tree | 03e68f1228d3bd49b5fb0af0261706bda34aa4bf | |
parent | 6c4f66f381a99ec7c9fb208ab6fc13c14bc7e985 (diff) | |
parent | 84910773140b9a82bc78c577db5b2c7779cc1a36 (diff) | |
download | rneovim-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.lua | 2 |
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}; |