aboutsummaryrefslogtreecommitdiff
path: root/test/helpers.lua
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-03-05 16:25:37 +0100
committerGitHub <noreply@github.com>2023-03-05 16:25:37 +0100
commitf636619d9e4326f6916ef06829acfd22619a1308 (patch)
tree9ee285effa26505127cd8813d906f9c5ea91d54f /test/helpers.lua
parentf4d83ac1e22e55a12895e5945680d90ee7c09b85 (diff)
parent2ddb50fa1bf84284e36e9345bde2de786f3b4f72 (diff)
downloadrneovim-f636619d9e4326f6916ef06829acfd22619a1308.tar.gz
rneovim-f636619d9e4326f6916ef06829acfd22619a1308.tar.bz2
rneovim-f636619d9e4326f6916ef06829acfd22619a1308.zip
Merge pull request #22486 from dundargoc/ci/cache
Diffstat (limited to 'test/helpers.lua')
-rw-r--r--test/helpers.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/helpers.lua b/test/helpers.lua
index 117b6b4aaa..008b91073f 100644
--- a/test/helpers.lua
+++ b/test/helpers.lua
@@ -371,8 +371,12 @@ end
local tests_skipped = 0
-function module.check_cores(app, force)
- app = app or 'build/bin/nvim'
+function module.check_cores(app, force) -- luacheck: ignore
+ -- Temporary workaround: skip core check as it interferes with CI.
+ if true then
+ return
+ end
+ app = app or 'build/bin/nvim' -- luacheck: ignore
local initial_path, re, exc_re
local gdb_db_cmd = 'gdb -n -batch -ex "thread apply all bt full" "$_NVIM_TEST_APP" -c "$_NVIM_TEST_CORE"'
local lldb_db_cmd = 'lldb -Q -o "bt all" -f "$_NVIM_TEST_APP" -c "$_NVIM_TEST_CORE"'