diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-11-30 12:08:46 +0100 |
---|---|---|
committer | Christian Clason <ch.clason+github@icloud.com> | 2024-11-30 13:40:08 +0100 |
commit | 9d174a7dace3004a069f474ed9c8ba4f3b97c5d8 (patch) | |
tree | af831f22f553d19f7af7ad01b0176e936b231d93 /runtime/doc | |
parent | 4426a326e2441326e280a0478f83128e09305806 (diff) | |
download | rneovim-9d174a7dace3004a069f474ed9c8ba4f3b97c5d8.tar.gz rneovim-9d174a7dace3004a069f474ed9c8ba4f3b97c5d8.tar.bz2 rneovim-9d174a7dace3004a069f474ed9c8ba4f3b97c5d8.zip |
vim-patch:9.1.0898: runtime(compiler): pytest compiler not included
Problem: runtime(compiler): pytest compiler not included
Solution: include pytest compiler, update the compiler completion test
(Konfekt)
closes: vim/vim#16130
https://github.com/vim/vim/commit/3c2596a9e967910143d41fbb9615614ab36d43a7
Co-authored-by: Konfekt <Konfekt@users.noreply.github.com>
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/quickfix.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt index 4811a51a87..a291c0277d 100644 --- a/runtime/doc/quickfix.txt +++ b/runtime/doc/quickfix.txt @@ -1517,6 +1517,13 @@ Useful values for the 'makeprg' options therefore are: setlocal makeprg=./alltests.py " Run a testsuite setlocal makeprg=python\ %:S " Run a single testcase +PYTEST COMPILER *compiler-pytest* +Commonly used compiler options can be added to 'makeprg' by setting the +b/g:pytest_makeprg_params variable. For example: > + + let b:pytest_makeprg_params = "--verbose --no-summary --disable-warnings" + +The global default is "--tb=short --quiet"; Python warnings are suppressed. TEX COMPILER *compiler-tex* |