mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
#2172 - Expand PATH in the shell for automatic virtualenv
This commit is contained in:
@@ -31,8 +31,9 @@ Execute(virtualenv vars should be used when ale_python_auto_virtualenv = 1):
|
||||
let b:sep = has('win32') ? ';' : ':'
|
||||
let b:executable = ale#path#Simplify(b:venv_bin . '/jedi-language-server')
|
||||
|
||||
AssertLinter b:executable, ale#Env('PATH', b:venv_bin . b:sep . $PATH)
|
||||
AssertLinter b:executable, ale#python#AutoVirtualenvEnvString(bufnr(''))
|
||||
\ . ale#Escape(b:executable)
|
||||
Assert !empty(ale#python#AutoVirtualenvEnvString(bufnr('')))
|
||||
|
||||
Execute(You should be able to override the jedi-language-server virtualenv lookup):
|
||||
call ale#test#SetFilename('../test-files/python/with_virtualenv/subdir/foo/bar.py')
|
||||
|
||||
@@ -52,8 +52,9 @@ Execute(virtualenv vars should be used when ale_python_auto_virtualenv = 1):
|
||||
let b:sep = has('win32') ? ';' : ':'
|
||||
let b:executable = ale#path#Simplify(b:venv_bin . '/pylsp')
|
||||
|
||||
AssertLinter b:executable, ale#Env('PATH', b:venv_bin . b:sep . $PATH)
|
||||
AssertLinter b:executable, ale#python#AutoVirtualenvEnvString(bufnr(''))
|
||||
\ . ale#Escape(b:executable)
|
||||
Assert !empty(ale#python#AutoVirtualenvEnvString(bufnr('')))
|
||||
|
||||
Execute(You should be able to override the pylsp virtualenv lookup):
|
||||
call ale#test#SetFilename('../test-files/python/with_virtualenv/subdir/foo/bar.py')
|
||||
|
||||
@@ -144,8 +144,9 @@ Execute(virtualenv vars should be used when ale_python_auto_virtualenv = 1):
|
||||
let b:sep = has('win32') ? ';' : ':'
|
||||
let b:executable = ale#path#Simplify(b:venv_bin . '/pyright-langserver')
|
||||
|
||||
AssertLinter b:executable, ale#Env('PATH', b:venv_bin . b:sep . $PATH)
|
||||
AssertLinter b:executable, ale#python#AutoVirtualenvEnvString(bufnr(''))
|
||||
\ . ale#Escape(b:executable) . ' --stdio'
|
||||
Assert !empty(ale#python#AutoVirtualenvEnvString(bufnr('')))
|
||||
|
||||
Execute(Setting executable to 'pipenv' should append 'run pyright'):
|
||||
call ale#test#SetFilename('../test-files')
|
||||
|
||||
Reference in New Issue
Block a user