diff options
author | Lewis Russell <lewis6991@gmail.com> | 2022-12-22 14:19:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-22 22:19:35 +0800 |
commit | 6e0082b356821825faef643b96f4d21684ce2f6c (patch) | |
tree | 3e9135d30fc92fd2f3c166d091420e765a25c7ff | |
parent | b2d984558bfa66439c784eed66b35868c771e085 (diff) | |
download | rneovim-6e0082b356821825faef643b96f4d21684ce2f6c.tar.gz rneovim-6e0082b356821825faef643b96f4d21684ce2f6c.tar.bz2 rneovim-6e0082b356821825faef643b96f4d21684ce2f6c.zip |
fix(ci): skip test on windows (#21502)
-rw-r--r-- | test/functional/lua/fs_spec.lua | 3 |
1 files changed, 3 insertions, 0 deletions
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', |