diff options
author | James McCoy <jamessan@jamessan.com> | 2021-08-13 23:53:55 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-08-13 23:53:55 -0400 |
commit | 84910773140b9a82bc78c577db5b2c7779cc1a36 (patch) | |
tree | 6084235dd678034cbf9584c7b13f5be7b25e942a | |
parent | a5ac2f45ff84a688a09479f357a9909d5b914294 (diff) | |
download | rneovim-84910773140b9a82bc78c577db5b2c7779cc1a36.tar.gz rneovim-84910773140b9a82bc78c577db5b2c7779cc1a36.tar.bz2 rneovim-84910773140b9a82bc78c577db5b2c7779cc1a36.zip |
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}; |