mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
plugins/neotest: move to by-name
This commit is contained in:
parent
0f83298f2c
commit
9d323f3ec7
26 changed files with 0 additions and 2 deletions
30
tests/test-sources/plugins/by-name/neotest/python.nix
Normal file
30
tests/test-sources/plugins/by-name/neotest/python.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
example = {
|
||||
plugins = {
|
||||
treesitter.enable = true;
|
||||
neotest = {
|
||||
enable = true;
|
||||
|
||||
adapters.python = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
dap.justMyCode = false;
|
||||
args = [
|
||||
"--log-level"
|
||||
"DEBUG"
|
||||
];
|
||||
runner = "pytest";
|
||||
python = ".venv/bin/python";
|
||||
is_test_file.__raw = ''
|
||||
function(file_path)
|
||||
return true
|
||||
end
|
||||
'';
|
||||
pytest_discover_instances = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue