mirror of
https://github.com/neovim/neovim.git
synced 2025-10-21 09:12:07 +00:00
ci: add cirrus to isCI function to skip tests (#20526)
The environment variable CIRRUS_CI is manually passed to RunTests.cmake as it doesn't get passed when using cmake script mode.
This commit is contained in:
@@ -10,7 +10,7 @@ local retry = helpers.retry
|
||||
local ok = helpers.ok
|
||||
local iswin = helpers.iswin
|
||||
local command = helpers.command
|
||||
local uname = helpers.uname
|
||||
local isCI = helpers.isCI
|
||||
|
||||
describe(':terminal', function()
|
||||
local screen
|
||||
@@ -46,8 +46,8 @@ describe(':terminal', function()
|
||||
end)
|
||||
|
||||
it("reads output buffer on terminal reporting #4151", function()
|
||||
if uname() == 'freebsd' then
|
||||
pending('Failing FreeBSD test')
|
||||
if isCI('cirrus') then
|
||||
pending('FIXME: cirrus')
|
||||
end
|
||||
if helpers.pending_win32(pending) then return end
|
||||
if iswin() then
|
||||
|
Reference in New Issue
Block a user