mirror of
https://github.com/neovim/neovim.git
synced 2025-10-22 17:11:49 +00:00
test: remove checks to see if current CI job is travis or appveyor
This commit is contained in:
@@ -181,12 +181,6 @@ describe('server -> client', function()
|
||||
end)
|
||||
|
||||
describe('recursive (child) nvim client', function()
|
||||
if helpers.isCI('travis') and helpers.is_os('mac') then
|
||||
-- XXX: Hangs Travis macOS since e9061117a5b8f195c3f26a5cb94e18ddd7752d86.
|
||||
pending("[Hangs on Travis macOS. #5002]", function() end)
|
||||
return
|
||||
end
|
||||
|
||||
before_each(function()
|
||||
command("let vim = rpcstart('"..nvim_prog.."', ['-u', 'NONE', '-i', 'NONE', '--cmd', 'set noswapfile', '--embed', '--headless'])")
|
||||
neq(0, eval('vim'))
|
||||
|
@@ -295,12 +295,6 @@ describe('jobs', function()
|
||||
end)
|
||||
|
||||
it("will not buffer data if it doesn't end in newlines", function()
|
||||
if helpers.isCI('travis') and os.getenv('CC') == 'gcc-4.9'
|
||||
and helpers.is_os('mac') then
|
||||
-- XXX: Hangs Travis macOS since e9061117a5b8f195c3f26a5cb94e18ddd7752d86.
|
||||
pending("[Hangs on Travis macOS. #5002]")
|
||||
end
|
||||
|
||||
nvim('command', "let j = jobstart(['cat', '-'], g:job_opts)")
|
||||
nvim('command', 'call jobsend(j, "abc\\nxyz")')
|
||||
eq({'notification', 'stdout', {0, {'abc', 'xyz'}}}, next_msg())
|
||||
|
@@ -10,8 +10,7 @@ describe("CTRL-C (mapped)", function()
|
||||
|
||||
it("interrupts :global", function()
|
||||
-- Crashes luajit.
|
||||
if helpers.skip_fragile(pending,
|
||||
helpers.isCI('travis') or helpers.isCI('appveyor')) then
|
||||
if helpers.skip_fragile(pending) then
|
||||
return
|
||||
end
|
||||
|
||||
|
@@ -801,12 +801,10 @@ end
|
||||
|
||||
function module.isCI(name)
|
||||
local any = (name == nil)
|
||||
assert(any or name == 'appveyor' or name == 'travis' or name == 'sourcehut' or name == 'github')
|
||||
local av = ((any or name == 'appveyor') and nil ~= os.getenv('APPVEYOR'))
|
||||
local tr = ((any or name == 'travis') and nil ~= os.getenv('TRAVIS'))
|
||||
assert(any or name == 'sourcehut' or name == 'github')
|
||||
local sh = ((any or name == 'sourcehut') and nil ~= os.getenv('SOURCEHUT'))
|
||||
local gh = ((any or name == 'github') and nil ~= os.getenv('GITHUB_ACTIONS'))
|
||||
return tr or av or sh or gh
|
||||
return sh or gh
|
||||
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user