mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-24 21:11:28 +08:00
Allow all Python linter executables to be set to pipenv.
It appends ` run {linter_name}`, analogously to the Ruby linters when
the executable is set to `bundle`
This commit is contained in:
23
test/command_callback/test_prospector_command_callback.vader
Normal file
23
test/command_callback/test_prospector_command_callback.vader
Normal file
@@ -0,0 +1,23 @@
|
||||
Before:
|
||||
Save g:ale_python_mypy_executable
|
||||
Save g:ale_python_mypy_options
|
||||
|
||||
unlet! g:ale_python_mypy_executable
|
||||
unlet! g:ale_python_mypy_options
|
||||
|
||||
runtime ale_linters/python/prospector.vim
|
||||
|
||||
After:
|
||||
Restore
|
||||
|
||||
unlet! b:executable
|
||||
|
||||
call ale#linter#Reset()
|
||||
|
||||
Execute(Setting executable to 'pipenv' appends 'run prospector'):
|
||||
let g:ale_python_prospector_executable = 'path/to/pipenv'
|
||||
|
||||
AssertEqual
|
||||
\ ale#Escape('path/to/pipenv') . ' run prospector'
|
||||
\ . ' --messages-only --absolute-paths --zero-exit --output-format json %s',
|
||||
\ ale_linters#python#prospector#GetCommand(bufnr(''))
|
||||
Reference in New Issue
Block a user