Describe the bug
No tests are found when using the latest neotest.
The latest commit in neotest runs the nvim subprocess (in which treesitter commands are run in) with a clean config, loading just the required plugins.
This means that this workaround to add the zig filetype won't work, as neotest-zig will never be loaded in the subprocess.
The proper way to solve this is to add the filetype to plenary, which I'm doing with this PR nvim-lua/plenary.nvim#669
After that is merged, we can remove the patch to plenary.filetype from this plugin.
Opening this issue just to document this for anyone that might run into it.
Describe the bug
No tests are found when using the latest neotest.
The latest commit in neotest runs the nvim subprocess (in which treesitter commands are run in) with a clean config, loading just the required plugins.
This means that this workaround to add the zig filetype won't work, as neotest-zig will never be loaded in the subprocess.
The proper way to solve this is to add the filetype to plenary, which I'm doing with this PR nvim-lua/plenary.nvim#669
After that is merged, we can remove the patch to
plenary.filetypefrom this plugin.Opening this issue just to document this for anyone that might run into it.