mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-07 13:14:29 +08:00
Fix 4490 - Fix pyright not running with poetry (#4491)
* Fix 4490 - Fix pyright not running with poetry * Fix tests
This commit is contained in:
@@ -65,7 +65,7 @@ endfunction
|
|||||||
function! ale_linters#python#pyright#GetCommand(buffer) abort
|
function! ale_linters#python#pyright#GetCommand(buffer) abort
|
||||||
let l:executable = ale_linters#python#pyright#GetExecutable(a:buffer)
|
let l:executable = ale_linters#python#pyright#GetExecutable(a:buffer)
|
||||||
let l:exec_args = l:executable =~? 'pipenv\|poetry$'
|
let l:exec_args = l:executable =~? 'pipenv\|poetry$'
|
||||||
\ ? ' run pyright'
|
\ ? ' run pyright-langserver'
|
||||||
\ : ''
|
\ : ''
|
||||||
let l:env_string = ''
|
let l:env_string = ''
|
||||||
|
|
||||||
|
|||||||
@@ -148,14 +148,14 @@ Execute(virtualenv vars should be used when ale_python_auto_virtualenv = 1):
|
|||||||
\ . ale#Escape(b:executable) . ' --stdio'
|
\ . ale#Escape(b:executable) . ' --stdio'
|
||||||
Assert !empty(ale#python#AutoVirtualenvEnvString(bufnr('')))
|
Assert !empty(ale#python#AutoVirtualenvEnvString(bufnr('')))
|
||||||
|
|
||||||
Execute(Setting executable to 'pipenv' should append 'run pyright'):
|
Execute(Setting executable to 'pipenv' should append 'run pyright-langserver'):
|
||||||
call ale#test#SetFilename('../test-files')
|
call ale#test#SetFilename('../test-files')
|
||||||
|
|
||||||
let g:ale_python_pyright_executable = 'path/to/pipenv'
|
let g:ale_python_pyright_executable = 'path/to/pipenv'
|
||||||
|
|
||||||
GivenCommandOutput []
|
GivenCommandOutput []
|
||||||
AssertLinter 'path/to/pipenv',
|
AssertLinter 'path/to/pipenv',
|
||||||
\ ale#Escape('path/to/pipenv') . ' run pyright --stdio'
|
\ ale#Escape('path/to/pipenv') . ' run pyright-langserver --stdio'
|
||||||
|
|
||||||
Execute(Pipenv is detected when python_pyright_auto_pipenv is set):
|
Execute(Pipenv is detected when python_pyright_auto_pipenv is set):
|
||||||
let g:ale_python_pyright_auto_pipenv = 1
|
let g:ale_python_pyright_auto_pipenv = 1
|
||||||
@@ -163,14 +163,14 @@ Execute(Pipenv is detected when python_pyright_auto_pipenv is set):
|
|||||||
|
|
||||||
AssertLinterCwd ale#python#FindProjectRootIni(bufnr(''))
|
AssertLinterCwd ale#python#FindProjectRootIni(bufnr(''))
|
||||||
AssertLinter 'pipenv',
|
AssertLinter 'pipenv',
|
||||||
\ ale#Escape('pipenv') . ' run pyright --stdio'
|
\ ale#Escape('pipenv') . ' run pyright-langserver --stdio'
|
||||||
|
|
||||||
Execute(Setting executable to 'poetry' should append 'run pyright'):
|
Execute(Setting executable to 'poetry' should append 'run pyright-langserver'):
|
||||||
let g:ale_python_pyright_executable = 'path/to/poetry'
|
let g:ale_python_pyright_executable = 'path/to/poetry'
|
||||||
|
|
||||||
GivenCommandOutput []
|
GivenCommandOutput []
|
||||||
AssertLinter 'path/to/poetry',
|
AssertLinter 'path/to/poetry',
|
||||||
\ ale#Escape('path/to/poetry') . ' run pyright --stdio'
|
\ ale#Escape('path/to/poetry') . ' run pyright-langserver --stdio'
|
||||||
|
|
||||||
Execute(poetry is detected when python_pyright_auto_poetry is set):
|
Execute(poetry is detected when python_pyright_auto_poetry is set):
|
||||||
let g:ale_python_pyright_auto_poetry = 1
|
let g:ale_python_pyright_auto_poetry = 1
|
||||||
@@ -178,4 +178,4 @@ Execute(poetry is detected when python_pyright_auto_poetry is set):
|
|||||||
|
|
||||||
AssertLinterCwd ale#python#FindProjectRootIni(bufnr(''))
|
AssertLinterCwd ale#python#FindProjectRootIni(bufnr(''))
|
||||||
AssertLinter 'poetry',
|
AssertLinter 'poetry',
|
||||||
\ ale#Escape('poetry') . ' run pyright --stdio'
|
\ ale#Escape('poetry') . ' run pyright-langserver --stdio'
|
||||||
|
|||||||
Reference in New Issue
Block a user