We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NeoVim Version NVIM v0.10.1 Build type: Debug LuaJIT 2.1.1713484068 Run "nvim -V1 -v" for more info
Describe the bug require('neotest').setup({ adapters = { require('neotest-go')({ experimental = { test_table = true, }, args = { '-count=1', '-timeout=60s' } }), -- require('neotest-python')({}), -- require('neotest-gtest').setup({}) } }) will add seconds of startup time
To Reproduce Please provide a minimal init.lua to reproduce which can be run as the following:
init.lua
nvim --clean -u minimal.lua
You can edit the following example file to include your adapters and other required setup.
vim.opt.runtimepath:remove(vim.fn.expand("~/.config/nvim")) vim.opt.packpath:remove(vim.fn.expand("~/.local/share/nvim/site")) local lazypath = "/tmp/lazy/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", -- latest stable release lazypath, }) end vim.opt.rtp:prepend(lazypath) require("lazy").setup({ "nvim-neotest/neotest", dependencies = { "nvim-lua/plenary.nvim", "nvim-treesitter/nvim-treesitter", -- Install adapters here }, config = function() -- Install any required parsers require("nvim-treesitter.configs").setup({ ensure_installed = {}, }) require("neotest").setup({ -- Add adapters to the list adapters = {}, }) end, })
Steps to reproduce the behavior:
Please provide example test files to reproduce.
Expected behavior A clear and concise description of what you expected to happen.
Logs
neotest.log
stdpath("log")
stdpath("data")
log_level = vim.log.levels.DEBUG
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
To reproduce: https://github.com/GopherJ/dotfiles/blob/master/coc/.vimrc
Edit: fixed in https://github.com/GopherJ/dotfiles/commit/8a08433420393b423891605a685a8482346c07f8
Sorry, something went wrong.
Ref: #380
@GopherJ what was the fix? that commit is not public
I removed neotest then everything is fine
rcarriga
No branches or pull requests
NeoVim Version
NVIM v0.10.1
Build type: Debug
LuaJIT 2.1.1713484068
Run "nvim -V1 -v" for more info
Describe the bug
require('neotest').setup({
adapters = {
require('neotest-go')({
experimental = {
test_table = true,
},
args = { '-count=1', '-timeout=60s' }
}),
-- require('neotest-python')({}),
-- require('neotest-gtest').setup({})
}
})
will add seconds of startup time
To Reproduce
Please provide a minimal
init.lua
to reproduce which can be run as the following:You can edit the following example file to include your adapters and other required setup.
Steps to reproduce the behavior:
Please provide example test files to reproduce.
Expected behavior
A clear and concise description of what you expected to happen.
Logs
neotest.log
file instdpath("log")
orstdpath("data")
.log_level = vim.log.levels.DEBUG
in your neotest setup config.Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: