Skip to content

Commit

Permalink
fix(ci): disable broken test on openbsd on all CI due to resource con…
Browse files Browse the repository at this point in the history
…straints
  • Loading branch information
bfredl committed Jul 23, 2021
1 parent 754ac5a commit a3e2636
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/functional/plugin/lsp_spec.lua
Expand Up @@ -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.
Expand Down Expand Up @@ -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 = {
Expand Down

0 comments on commit a3e2636

Please sign in to comment.