aboutsummaryrefslogtreecommitdiff
path: root/test/functional/api/vim_spec.lua
diff options
context:
space:
mode:
authorSean Dewar <seandewar@users.noreply.github.com>2021-10-27 23:27:17 +0100
committerGitHub <noreply@github.com>2021-10-27 16:27:17 -0600
commitd918759dee5760b8bf146b2715ded8eb23f03cd6 (patch)
tree9331a7c79318dc11dff0617eecc823c6fe4113cc /test/functional/api/vim_spec.lua
parent3e1ef185793418f50893c6026b0d1966323d279b (diff)
downloadrneovim-d918759dee5760b8bf146b2715ded8eb23f03cd6.tar.gz
rneovim-d918759dee5760b8bf146b2715ded8eb23f03cd6.tar.bz2
rneovim-d918759dee5760b8bf146b2715ded8eb23f03cd6.zip
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.
Diffstat (limited to 'test/functional/api/vim_spec.lua')
-rw-r--r--test/functional/api/vim_spec.lua2
1 files changed, 1 insertions, 1 deletions
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