mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
GHA: Skip tests that fail due to actions/runner#241
This commit is contained in:
parent
808eb44f4a
commit
f23b906ddd
@ -348,6 +348,10 @@ describe('TUI', function()
|
||||
end)
|
||||
|
||||
it('paste: terminal mode', function()
|
||||
if os.getenv('GITHUB_ACTIONS') ~= nil then
|
||||
pending("tty-test complains about not owning the terminal -- actions/runner#241")
|
||||
return
|
||||
end
|
||||
feed_data(':set statusline=^^^^^^^\n')
|
||||
feed_data(':terminal '..nvim_dir..'/tty-test\n')
|
||||
feed_data('i')
|
||||
@ -776,6 +780,10 @@ describe('TUI', function()
|
||||
end)
|
||||
|
||||
it('forwards :term palette colors with termguicolors', function()
|
||||
if os.getenv('GITHUB_ACTIONS') ~= nil then
|
||||
pending("tty-test complains about not owning the terminal -- actions/runner#241")
|
||||
return
|
||||
end
|
||||
screen:set_rgb_cterm(true)
|
||||
screen:set_default_attr_ids({
|
||||
[1] = {{reverse = true}, {reverse = true}},
|
||||
|
Loading…
Reference in New Issue
Block a user