2025-04-05 02:08:00
github.com

Testing integrated in neovim with pytest. Include Docker support. This project is in progress, I will be adding more features in the future and I open to contributions.
These instructions will help you set up and use pytest.nvim
in your Neovim environment.
- Neovim 0.5.0 or later
- pytest in your environment (pip install pytest)
-
Install the
pytest.nvim
plugin using your preferred plugin manager:Lazyvim:
{ "richardhapb/pytest.nvim", opts = {} }
Packer:
use { "richardhapb/pytest.nvim", opt = true }
Vim-Plug:
Plug 'richardhapb/pytest.nvim'
-
Load the
pytest
plugin in your Neovim configuration if you haven’t already done so. For example:require('pytest').setup()
-
Use the
:Pytest
command to run the tests in the current buffer.-
To check the entire buffer:
-
To check the output of the tests:
-
You can attach the test to the current buffer, this runs test on save:
-
You can detach the test from the current buffer:
-
Docker enable on the way
-
Docker disabled on the way
-
The default keybinding that runs :Pytest
is
.
The plugin provides the following default keymap:
– Run pytest for the current file (normal mode)TT
– Attach pytest to the current buffer (normal mode)Ta
– Detach pytest from the current buffer (normal mode)Td
Default settings, is not necessary to set up, but you can change the settings in your configuration file.
docker_compose_service=”app”, — This is for looking for the docker path in docker compose
enable_docker_compose = true, — Enable docker compose support
},
— You can overwrite this callback with your custom keymaps,
— this is called when open a Python file and buffer number is passed as an argument
keymaps_callback = function(bufnr)
vim.keymap.set(‘n’, ‘
vim.keymap.set(‘n’, ‘
vim.keymap.set(‘n’, ‘
end
}”>
require 'pytest'.setup {
docker = {
enabled = true, -- Enable docker support
container = 'app-1', -- Container where the tests will be run
docker_path = '/usr/src/app', -- This is the default path, if you use docker compose this is obtained from the docker compose file
docker_path_prefix = 'app', -- This is the prefix for the path in the cwd in your local, for example: root/app/
docker_compose_file = 'docker-compose.yml', -- This is the default docker compose file name
docker_compose_service = 'app', -- This is for looking for the docker path in docker compose
enable_docker_compose = true, -- Enable docker compose support
},
-- You can overwrite this callback with your custom keymaps,
-- this is called when open a Python file and buffer number is passed as an argument
keymaps_callback = function(bufnr)
vim.keymap.set('n', 'TT' , 'Pytest' , { buffer = bufnr, desc = 'Run Pytest' })
vim.keymap.set('n', 'Ta' , 'PytestAttach' , { buffer = bufnr, desc = 'Attach Pytest to buffer' })
vim.keymap.set('n', 'Td' , 'PytestDetach' , { buffer = bufnr, desc = 'Detach Pytest' })
end
}
Options can be callbacks, for example:
require 'pytest'.setup {
docker = {
enabled = function()
return vim.fn.getcwd():match(".*/(.*)$") == "work" -- Only enable docker if the last dir of cwd is "work"
end,
container = function()
local app = utils.get_my_awesome_app()
return app .. '-version-2'
end
},
}
Keep your files stored safely and securely with the SanDisk 2TB Extreme Portable SSD. With over 69,505 ratings and an impressive 4.6 out of 5 stars, this product has been purchased over 8K+ times in the past month. At only $129.99, this Amazon’s Choice product is a must-have for secure file storage.
Help keep private content private with the included password protection featuring 256-bit AES hardware encryption. Order now for just $129.99 on Amazon!
Help Power Techcratic’s Future – Scan To Support
If Techcratic’s content and insights have helped you, consider giving back by supporting the platform with crypto. Every contribution makes a difference, whether it’s for high-quality content, server maintenance, or future updates. Techcratic is constantly evolving, and your support helps drive that progress.
As a solo operator who wears all the hats, creating content, managing the tech, and running the site, your support allows me to stay focused on delivering valuable resources. Your support keeps everything running smoothly and enables me to continue creating the content you love. I’m deeply grateful for your support, it truly means the world to me! Thank you!
BITCOIN bc1qlszw7elx2qahjwvaryh0tkgg8y68enw30gpvge Scan the QR code with your crypto wallet app |
DOGECOIN D64GwvvYQxFXYyan3oQCrmWfidf6T3JpBA Scan the QR code with your crypto wallet app |
ETHEREUM 0xe9BC980DF3d985730dA827996B43E4A62CCBAA7a Scan the QR code with your crypto wallet app |
Please read the Privacy and Security Disclaimer on how Techcratic handles your support.
Disclaimer: As an Amazon Associate, Techcratic may earn from qualifying purchases.