No description
| README.md | ||
Updates on the neotest-dotnet case
What happened
As it turns out, all one had to do was read: https://github.com/Issafalcon/neotest-dotnet#looking-for-new-maintainers
Issafalcon is looking for maintainers for neotest-dotnet because he doesn't have time for it anymore.
Now What?
Since neotest-vstest is very slow I now switched to citizenharris' fork of neotest-dotnet where he fixed the latest neovim compatibility issues (thank you, citizenharris)
https://github.com/Issafalcon/neotest-dotnet/compare/main...citizenharris:neotest-dotnet:main
In you lazy/nvim plugin configuration simply point to citizenharris/neotest-dotnet instead of Issafalcon/neotest-dotnet
-- lua/plugins/init.lua
-- ...
{
"nvim-neotest/neotest",
requires = {
{
"citizenharris/neotest-dotnet",
}
},
-- ...
},
{
"citizenharris/neotest-dotnet",
-- ...
},
-- ...
and make sure to load the neotest-dotnet adapter:
local opts = {
adapters = {
require("neotest-dotnet")
}
}
require("neotest").setup(opts)