mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
unittests: Do not run failing test at all
This commit is contained in:
parent
29ed5b3a39
commit
5898b42d82
@ -378,6 +378,10 @@ local function gen_itp(it)
|
||||
'assertion.just_fail.positive',
|
||||
'assertion.just_fail.negative')
|
||||
local function itp(name, func, allow_failure)
|
||||
if allow_failure and os.getenv('NVIM_TEST_RUN_FAILING_TESTS') ~= '1' then
|
||||
-- FIXME Fix tests with this true
|
||||
return
|
||||
end
|
||||
it(name, function()
|
||||
local rd, wr = sc.pipe()
|
||||
local pid = sc.fork()
|
||||
|
Loading…
Reference in New Issue
Block a user