diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-07-23 18:33:07 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2021-07-23 19:35:32 +0200 |
commit | a3e2636afdd4d45c8e56dd5acfbbbb059f4e24c4 (patch) | |
tree | 594230996227b0a2f45476ddd2a141b10351abda | |
parent | 754ac5a834cb82f73ca552a9a55b90a40f9367f6 (diff) | |
download | rneovim-a3e2636afdd4d45c8e56dd5acfbbbb059f4e24c4.tar.gz rneovim-a3e2636afdd4d45c8e56dd5acfbbbb059f4e24c4.tar.bz2 rneovim-a3e2636afdd4d45c8e56dd5acfbbbb059f4e24c4.zip |
fix(ci): disable broken test on openbsd on all CI due to resource constraints
-rw-r--r-- | test/functional/plugin/lsp_spec.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua index e38ed10ab9..e5533af73b 100644 --- a/test/functional/plugin/lsp_spec.lua +++ b/test/functional/plugin/lsp_spec.lua @@ -14,6 +14,7 @@ local retry = helpers.retry local NIL = helpers.NIL local read_file = require('test.helpers').read_file local write_file = require('test.helpers').write_file +local isCI = helpers.isCI -- Use these to get access to a coroutine so that I can run async tests and use -- yield. @@ -262,8 +263,8 @@ describe('LSP', function() end) it('should succeed with manual shutdown', function() - if 'openbsd' == helpers.uname() then - pending('hangs the build on openbsd #14028, re-enable with freeze timeout #14204') + if isCI() then + pending('hangs the build on CI #14028, re-enable with freeze timeout #14204') return end local expected_handlers = { |