nixpkgs/home/programs/neovim/patches/disable_test_paratest.patch
Daniel Siepmann 551153f446
Do note use paratest in Neovim plugin vim-test
Remove the paratest detection.
I consider paratest only for CI and executing a huge set of tests.
But I use vim-test only to execute a single test file or single test.
2022-03-15 17:29:34 +01:00

14 lines
570 B
Diff

diff --git a/autoload/test/php/phpunit.vim b/autoload/test/php/phpunit.vim
index 066aa3c..beee721 100644
--- a/autoload/test/php/phpunit.vim
+++ b/autoload/test/php/phpunit.vim
@@ -51,8 +51,6 @@ function! test#php#phpunit#executable() abort
return g:test#php#phpunit#executable
elseif filereadable('./vendor/bin/sail')
return './vendor/bin/sail test'
- elseif filereadable('./vendor/bin/paratest')
- return './vendor/bin/paratest'
elseif filereadable('./vendor/bin/phpunit')
return './vendor/bin/phpunit'
elseif filereadable('./bin/phpunit')