#2172 - Expand PATH in the shell for automatic virtualenv

This commit is contained in:
w0rp
2023-03-07 01:59:05 +00:00
parent 6ae26df22b
commit bb691d6dee
5 changed files with 26 additions and 9 deletions

View File

@@ -10,3 +10,14 @@ Execute(ale#python#FindVirtualenv falls back to $VIRTUAL_ENV when no directories
\ ale#python#FindVirtualenv(bufnr('%')),
\ '/opt/example/',
\ 'Expected VIRTUAL_ENV environment variable to be used, but it was not'
Execute(ale#python#AutoVirtualenvEnvString should return the correct values):
if has('win32')
AssertEqual
\ 'set PATH=/opt/example/;%PATH% && ',
\ ale#python#AutoVirtualenvEnvString(bufnr(''))
else
AssertEqual
\ 'PATH=''/opt/example/''":$PATH" ',
\ ale#python#AutoVirtualenvEnvString(bufnr(''))
endif