nvim-pytrize.lua icon indicating copy to clipboard operation
nvim-pytrize.lua copied to clipboard

Easily navigate pytest parametrize entries and fixtures with neovim

Results 4 nvim-pytrize.lua issues
Sort by recently updated
recently updated
newest added

I'm working on a project where tests are organized into folders. I'd love for `PytrizeJumpFixture` to search on the parent directory as well. For example, if we have the following...

Hello, If you have a Python project, with multiple test files (e.g. test_x.py and test_y.py). Both of these test files declares the following fixture: ``` @pytest.fixture def config_dir(tmp_path): return tmp_path...

I love `PytrizeJumpFixture`, but it would be great if it integrated with (e.g.) https://github.com/microsoft/pyright or other LSPs. Ideally, I'd just use my "go to definition" keybinding, and the result of...

It is cool to have the plugin, it really helps to deal with the pytest fixture and paras problem. Neotest is also a quite easy-to-use plugin to deal with testing...