mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
tests: skip "API nvim_parse_expression" on MSVC_32 (#10773)
Only "API nvim_parse_expression works with &opt" is flaky, but easier to skip all of "API nvim_parse_expression". Ref: https://github.com/neovim/neovim/issues/10241
This commit is contained in:
parent
7d92c391a1
commit
fc60d92795
@ -1148,6 +1148,13 @@ describe('API', function()
|
||||
before_each(function()
|
||||
meths.set_option('isident', '')
|
||||
end)
|
||||
|
||||
local it_maybe_pending = it
|
||||
if (helpers.isCI('appveyor') and os.getenv('CONFIGURATION') == 'MSVC_32') then
|
||||
-- For "works with &opt" (flaky on MSVC_32), but not easy to skip alone. #10241
|
||||
it_maybe_pending = pending
|
||||
end
|
||||
|
||||
local function simplify_east_api_node(line, east_api_node)
|
||||
if east_api_node == NIL then
|
||||
return nil
|
||||
@ -1345,7 +1352,7 @@ describe('API', function()
|
||||
end
|
||||
assert:set_parameter('TableFormatLevel', 1000000)
|
||||
require('test.unit.viml.expressions.parser_tests')(
|
||||
it, _check_parsing, hl, fmtn)
|
||||
it_maybe_pending, _check_parsing, hl, fmtn)
|
||||
end)
|
||||
|
||||
describe('nvim_list_uis', function()
|
||||
|
Loading…
Reference in New Issue
Block a user