diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-02-19 11:11:05 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-02-20 10:22:39 +0100 |
commit | 82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8 (patch) | |
tree | 739fca2a09149899c6f12b10879e0097bfc425a2 /test/functional/core/job_spec.lua | |
parent | 2550212b25f313c781ac048757b6969c920cd78f (diff) | |
download | rneovim-82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8.tar.gz rneovim-82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8.tar.bz2 rneovim-82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8.zip |
ci: skip tests that fail on windows
Diffstat (limited to 'test/functional/core/job_spec.lua')
-rw-r--r-- | test/functional/core/job_spec.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua index 0a69660871..a0df3b7767 100644 --- a/test/functional/core/job_spec.lua +++ b/test/functional/core/job_spec.lua @@ -78,6 +78,7 @@ describe('jobs', function() end) it('append environment with pty #env', function() + if helpers.pending_win32(pending) then return end nvim('command', "let $VAR = 'abc'") nvim('command', "let $TOTO = 'goodbye world'") nvim('command', "let g:job_opts.pty = v:true") |