Browse Source

Update init test for fish

pull/451/head
Harish Rajagopal 1 year ago
parent
commit
096a1c91f3
No known key found for this signature in database GPG Key ID: 6D3F9FC446023F9C
1 changed files with 7 additions and 3 deletions
  1. +7
    -3
      test/init.bats

+ 7
- 3
test/init.bats View File

@ -76,15 +76,19 @@ while set index (contains -i -- "${TMP}/pyenv/plugins/pyenv-virtualenv/shims" \$
set -eg PATH[\$index]; end; set -e index
set -gx PATH '${TMP}/pyenv/plugins/pyenv-virtualenv/shims' \$PATH;
set -gx PYENV_VIRTUALENV_INIT 1;
function _pyenv_virtualenv_hook --on-event fish_prompt;
function _pyenv_virtualenv_hook --on-variable PWD --on-variable PYENV_VERSION;
set -l ret \$status
if [ -n "\$VIRTUAL_ENV" ]
pyenv activate --quiet; or pyenv deactivate --quiet; or true
function _pyenv_activate_or_deactivate
pyenv activate --quiet || pyenv deactivate --quiet
end
_pyenv_activate_or_deactivate &
else
pyenv activate --quiet; or true
pyenv activate --quiet &;
end
return \$ret
end
_pyenv_virtualenv_hook
EOS
}

Loading…
Cancel
Save