diff options
author | James McCoy <jamessan@jamessan.com> | 2020-11-13 09:45:11 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2020-11-13 13:36:57 -0500 |
commit | f23b906ddd30ccf38a280f70f475550b5c9846c9 (patch) | |
tree | 5bd7b9a5c18d5ce7d83930c8a1e23d8479e8ca67 | |
parent | 808eb44f4a7e789db49a2b20a19648d637e7be03 (diff) | |
download | rneovim-f23b906ddd30ccf38a280f70f475550b5c9846c9.tar.gz rneovim-f23b906ddd30ccf38a280f70f475550b5c9846c9.tar.bz2 rneovim-f23b906ddd30ccf38a280f70f475550b5c9846c9.zip |
GHA: Skip tests that fail due to actions/runner#241
-rw-r--r-- | test/functional/terminal/tui_spec.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/functional/terminal/tui_spec.lua b/test/functional/terminal/tui_spec.lua index c0578c08e1..5948ab3a64 100644 --- a/test/functional/terminal/tui_spec.lua +++ b/test/functional/terminal/tui_spec.lua @@ -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}}, |