vim-ultest icon indicating copy to clipboard operation
vim-ultest copied to clipboard

The ultimate testing plugin for (Neo)Vim

Results 23 vim-ultest issues
Sort by recently updated
recently updated
newest added

Often I'll start a test and then do something else while I wait. It would be helpful to have a notification pop-up so that I know whether it succeeded and...

Hi! Great plugin! :D I have been working on getting a better integrated neovim setup, where coding, debugging & testing feel more at home with each other. Your plugin really...

This plugin works very well on linux, but does not work on windows, since the `pty` module does not work on windows according to python's official documentation(in fact, it does...

enhancement
help wanted

First of all thank you for creating this awesome plugin. So I'm using neovim 0.7 and have setup vim-ultest and works fine, except for the fact that I noticed that...

Very similar to #21. **Describe the bug** Nothing happens when running Ultest* commands. Tests are seemingly detected fine (they show up in UltestSummary tree), however, they are not actually running....

awaiting response

**Describe the bug** Here's my plugin config (using a Packer.nvim macro): ```fennel (use-package! :rcarriga/vim-ultest {:requires :vim-test/vim-test :run ":UpdateRemotePlugins" :setup (fn [] (let! test#python#pytest#options :--color=yes))}) ``` Which compiles to: ```lua local...

My regex skills aren't the greatest, but I believe this will work to fix #111

https://github.com/rcarriga/vim-ultest/blob/a99eb0bdf7d901d538b5dd724e2ab3a958c1799c/plugin/ultest.vim#L284 This regex pattern does not match tests / features that are in the form of: ``` test "this is a test", %{ conn: conn, stuff: stuff} do test_things |>...

**Describe the bug** When you delete any test buffer the ultest breaks. The reason for this is that the file is kept on multiple places for example in `g:ultest_buffers`, `s:monitored`...

**Describe the bug** If I run ```TestNearest -u``` then vim-test will update my jest snapshots (`-u` updates snapshot tests) however if I run ``` UltestNearest -u ``` then it does...

enhancement