From d918759dee5760b8bf146b2715ded8eb23f03cd6 Mon Sep 17 00:00:00 2001 From: Sean Dewar Date: Wed, 27 Oct 2021 23:27:17 +0100 Subject: 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. --- test/functional/api/vim_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/functional/api') diff --git a/test/functional/api/vim_spec.lua b/test/functional/api/vim_spec.lua index c95c24fabe..2e95b2cf6a 100644 --- a/test/functional/api/vim_spec.lua +++ b/test/functional/api/vim_spec.lua @@ -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 -- cgit