ci: tests using minit

This commit is contained in:
Folke Lemaitre 2024-06-29 07:26:49 +02:00
parent f47ab692f1
commit b1821ca2fa
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 3 additions and 22 deletions

View File

@ -1,28 +1,9 @@
#!/usr/bin/env -S nvim -l
-- set stdpaths to use .tests
local root = vim.fn.fnamemodify("./.tests", ":p")
for _, name in ipairs({ "config", "data", "state", "cache" }) do
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end
vim.opt.rtp:prepend(".")
vim.o.loadplugins = true -- enable since nvim -l disables plugins
-- Setup lazy.nvim
require("lazy").setup({
spec = {
"lunarmodules/busted", -- add busted
},
rocks = { hererocks = true },
require("lazy.minit").busted({
spec = {},
stdpath = ".tests",
})
local Config = require("lazy.core.config")
-- disable termnial output for the tests
Config.options.headless = {}
-- run busted
return pcall(require("busted.runner"), {
standalone = false,
}) or os.exit(1)