21 lines
414 B
Lua
21 lines
414 B
Lua
return {
|
|
"nvim-neotest/neotest",
|
|
optional = true,
|
|
dependencies = {
|
|
"nvim-neotest/neotest-go",
|
|
},
|
|
opts = {
|
|
adapters = {
|
|
["neotest-python"] = {
|
|
-- Here you can specify the settings for the adapter, i.e.
|
|
-- runner = "pytest",
|
|
-- python = ".venv/bin/python",
|
|
},
|
|
["neotest-go"] = {
|
|
-- Here we can set options for neotest-go, e.g.
|
|
-- args = { "-tags=integration" }
|
|
},
|
|
},
|
|
},
|
|
}
|