nvim-dap-python icon indicating copy to clipboard operation
nvim-dap-python copied to clipboard

An extension for nvim-dap, providing default configurations for python and methods to debug individual test methods or classes.

Results 30 nvim-dap-python issues
Sort by recently updated
recently updated
newest added

Try to get venv from pypoetry. If not configured pythonPath or set VIRTUAL_ENV.

I tried to debug my FastAPI project but any configuration I tried never give me good result. Does anyone successfully debug FastAPI with nvim-dap? this is my nvim dap configuration:...

I would like `test_method()` to execute the test runner in running a docker container and attach the debugger. I think that is a common workflow and it would be nice...

This allows users to customize runner commands with a table of args to add to the test runner call. from my config: ```vimrc " DAP - debug adapter protocol lua...

Is there any interest in integrating tox support? Are there any technical blockers? I'm considering writing my own custom runner, but if I'm going to do that anyways I might...

Hello, I wanted to debug my application on windows with nvim-dap-python. However, I get the following warning message: **The debug adapter did not respond. Either the adapter is slow (then...

Great project so far, but I've been having some difficulty in getting our project to work with forked processes. Specifically the code below hangs indefinitely, was looking for any suggestions...

I'm trying to setup Neovim with nvim-dap, nvim-dap-python and debugpy. Since I have debugpy in my distribution packages I installed it _not_ via a virtual environment but directly in the...

Hi! Here's my keybinding: ```lua vim.api.nvim_set_keymap('n', 'ds', ':lua require("dap-python").test_method()', { noremap = true, silent = true }) ``` ## Top-level test If I run it on a test like this,...