neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit cff8c15977bc5b012b64ffa8a802b0b0b1c2a87c
parent dde2cc65fd2ac89ad88b19df08dc03cf1da50316
Author: dundargoc <gocdundar@gmail.com>
Date:   Thu, 28 Mar 2024 12:05:28 +0100

test: skip flaky tests

Diffstat:
Mtest/functional/lua/watch_spec.lua | 1+
Mtest/unit/eval/typval_spec.lua | 2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/test/functional/lua/watch_spec.lua b/test/functional/lua/watch_spec.lua @@ -31,6 +31,7 @@ describe('vim._watch', function() end if watchfunc == 'watch' then + skip(is_os('mac'), 'flaky test on mac') skip(is_os('bsd'), 'Stopped working on bsd after 3ca967387c49c754561c3b11a574797504d40f38') else skip( diff --git a/test/unit/eval/typval_spec.lua b/test/unit/eval/typval_spec.lua @@ -3352,7 +3352,7 @@ describe('typval.c', function() end end describe('string()', function() - itp('works', function() + pending('works (skip due to flakiness)', function() local buf = lib.tv_get_string(lua2typvalt(int(1))) local buf_chk = lib.tv_get_string_chk(lua2typvalt(int(1))) neq(buf, buf_chk)