fix(ci): disable broken test on openbsd on all CI due to resource constraints

This commit is contained in:
Björn Linse
2021-07-23 18:33:07 +02:00
parent 754ac5a834
commit a3e2636afd

View File

@ -14,6 +14,7 @@ local retry = helpers.retry
local NIL = helpers.NIL local NIL = helpers.NIL
local read_file = require('test.helpers').read_file local read_file = require('test.helpers').read_file
local write_file = require('test.helpers').write_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 -- Use these to get access to a coroutine so that I can run async tests and use
-- yield. -- yield.
@ -262,8 +263,8 @@ describe('LSP', function()
end) end)
it('should succeed with manual shutdown', function() it('should succeed with manual shutdown', function()
if 'openbsd' == helpers.uname() then if isCI() then
pending('hangs the build on openbsd #14028, re-enable with freeze timeout #14204') pending('hangs the build on CI #14028, re-enable with freeze timeout #14204')
return return
end end
local expected_handlers = { local expected_handlers = {