From 6e0082b356821825faef643b96f4d21684ce2f6c Mon Sep 17 00:00:00 2001 From: Lewis Russell Date: Thu, 22 Dec 2022 14:19:35 +0000 Subject: fix(ci): skip test on windows (#21502) --- test/functional/lua/fs_spec.lua | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/functional/lua') diff --git a/test/functional/lua/fs_spec.lua b/test/functional/lua/fs_spec.lua index 5db92ca174..02b1b6f027 100644 --- a/test/functional/lua/fs_spec.lua +++ b/test/functional/lua/fs_spec.lua @@ -143,6 +143,9 @@ describe('vim.fs', function() end) it('works with opts.depth and opts.skip', function() + if is_os('win') then + pending() + end helpers.funcs.system 'mkdir -p testd/a/b/c' helpers.funcs.system('touch '..table.concat({ 'testd/a1', -- cgit