diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-01-18 10:39:12 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-01-20 19:43:59 -0500 |
commit | ff9f70a6bfe3206c258c5c25e3148fbe1afd6ed2 (patch) | |
tree | d6e92dbed4e29ca38e3419d5178f2eaef9500fcf | |
parent | 2063af3c94834ed35155ae9cb3d7daa1564bb1a9 (diff) | |
download | rneovim-ff9f70a6bfe3206c258c5c25e3148fbe1afd6ed2.tar.gz rneovim-ff9f70a6bfe3206c258c5c25e3148fbe1afd6ed2.tar.bz2 rneovim-ff9f70a6bfe3206c258c5c25e3148fbe1afd6ed2.zip |
provider/perl: skip tests on Windows
It worked for MINGW builds at one point
but it keeps failing now because of perl dependencies
or nvim session issues for tests (named pipes as sockets on Windows?).
-rw-r--r-- | test/functional/provider/perl_spec.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/provider/perl_spec.lua b/test/functional/provider/perl_spec.lua index 640fe0f622..38cecae35c 100644 --- a/test/functional/provider/perl_spec.lua +++ b/test/functional/provider/perl_spec.lua @@ -20,6 +20,7 @@ before_each(function() end) describe('perl host', function() + if helpers.pending_win32(pending) then return end teardown(function () os.remove('Xtest-perl-hello.pl') os.remove('Xtest-perl-hello-plugin.pl') |