test(vim_spec): fix MSVC_32 skip for nvim_parse_expression test (#16161)

"works with &opt" is flaky; now it always fails after #15999 for some reason.

This test was skipped in #10773 due to previous flakiness, but after the switch away from appveyor
the check no longer works. Just skip for any CI running the MSVC_32 job.
This commit is contained in:
Sean Dewar 2021-10-27 23:27:17 +01:00 committed by GitHub
parent 3e1ef18579
commit d918759dee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1690,7 +1690,7 @@ describe('API', function()
end)
local it_maybe_pending = it
if (helpers.isCI('appveyor') and os.getenv('CONFIGURATION') == 'MSVC_32') then
if helpers.isCI() 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