mirror of
https://github.com/neovim/neovim.git
synced 2026-07-30 04:18:02 +00:00
test: support running functionaltests in parallel by directory (#37918)
Define a CMake target for every subdirectory of test/functional that contains functional tests, and a functionaltest_parallel target that depends on all those targets, allowing multiple test runners to run in parallel. On CI, use at most 2 parallel test runners, as using more may increase system load and make tests unstable.
This commit is contained in:
@@ -6,8 +6,8 @@ local neq = t.neq
|
||||
local exec_lua = n.exec_lua
|
||||
|
||||
describe('nvim.spellfile', function()
|
||||
local data_root = 'Xtest_data'
|
||||
local rtp_dir = 'Xtest_rtp'
|
||||
local data_root = 'Xtest_data_spellfile'
|
||||
local rtp_dir = 'Xtest_rtp_spellfile'
|
||||
|
||||
before_each(function()
|
||||
n.clear()
|
||||
|
||||
Reference in New Issue
Block a user