mirror of
https://github.com/pyenv/pyenv-virtualenv.git
synced 2025-11-12 13:33:52 -05:00
Compare commits
1 Commits
v20141012
...
manual-act
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7e8223eac1 |
30
README.md
30
README.md
@@ -114,22 +114,6 @@ You can also activate and deactivate a pyenv virtualenv this way:
|
|||||||
pyenv activate <name>
|
pyenv activate <name>
|
||||||
pyenv deactivate
|
pyenv deactivate
|
||||||
|
|
||||||
|
|
||||||
### Delete existing virtualenv
|
|
||||||
|
|
||||||
Removing the directory in `~/.pyenv/versions` will delete the virtualenv, or you can run:
|
|
||||||
|
|
||||||
pyenv uninstall my-virtual-env
|
|
||||||
|
|
||||||
|
|
||||||
### virtualenv and pyvenv
|
|
||||||
|
|
||||||
There is [venv](http://docs.python.jp/3/library/venv.html) module available for CPython 3.3 and newer.
|
|
||||||
It provides a command-line tool `pyvenv` which is the successor of `virtualenv` and distributed by default.
|
|
||||||
|
|
||||||
The `pyenv-virtualenv` uses `pyvenv` if it is available and the `virtualenv` is not available.
|
|
||||||
|
|
||||||
|
|
||||||
### Special environment variables
|
### Special environment variables
|
||||||
|
|
||||||
You can set certain environment variables to control the pyenv-virtualenv.
|
You can set certain environment variables to control the pyenv-virtualenv.
|
||||||
@@ -149,20 +133,6 @@ You can set certain environment variables to control the pyenv-virtualenv.
|
|||||||
|
|
||||||
## Version History
|
## Version History
|
||||||
|
|
||||||
#### 20141012
|
|
||||||
|
|
||||||
* Fix warnings from `shellcheck` to improve support for POSIX sh (#40)
|
|
||||||
* Do not allow whitespace in `VIRTUALENV_NAME` (#44)
|
|
||||||
* Should not persist `PYENV_DEACTIVATE` after automatic deactivation (#47, #48)
|
|
||||||
|
|
||||||
#### 20140705
|
|
||||||
|
|
||||||
* Display information on auto-(de)?activation
|
|
||||||
* Support manual (de)?activation with auto-activation enabled (#32, #34)
|
|
||||||
* Exit as error when (de)?activation failed
|
|
||||||
* Use https://bootstrap.pypa.io/ to install setuptools and pip
|
|
||||||
* Create backup of original virtualenv within `$(pyenv root)/versions` when `--upgrade`
|
|
||||||
|
|
||||||
#### 20140615
|
#### 20140615
|
||||||
|
|
||||||
* Fix incompatibility issue of `pyenv activate` and `pyenv deactivate` (#26)
|
* Fix incompatibility issue of `pyenv activate` and `pyenv deactivate` (#26)
|
||||||
|
|||||||
@@ -14,32 +14,16 @@
|
|||||||
set -e
|
set -e
|
||||||
[ -n "$PYENV_DEBUG" ] && set -x
|
[ -n "$PYENV_DEBUG" ] && set -x
|
||||||
|
|
||||||
unset NOERROR
|
# Provide pyenv completions
|
||||||
unset VERBOSE
|
if [ "$1" = "--complete" ]; then
|
||||||
|
echo --unset
|
||||||
|
exec pyenv-virtualenvs --bare
|
||||||
|
fi
|
||||||
|
|
||||||
while [ $# -gt 0 ]; do
|
if [ "$1" = "--unset" ]; then
|
||||||
case "$1" in
|
echo "pyenv deactivate"
|
||||||
"--complete" )
|
exit
|
||||||
# Provide pyenv completions
|
fi
|
||||||
echo --unset
|
|
||||||
exec pyenv-virtualenvs --bare
|
|
||||||
;;
|
|
||||||
"--no-error" )
|
|
||||||
NOERROR=1
|
|
||||||
;;
|
|
||||||
"--unset" )
|
|
||||||
echo "pyenv deactivate"
|
|
||||||
exit
|
|
||||||
;;
|
|
||||||
"--verbose" )
|
|
||||||
VERBOSE=1
|
|
||||||
;;
|
|
||||||
* )
|
|
||||||
break
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
shift 1
|
|
||||||
done
|
|
||||||
|
|
||||||
versions=("$@")
|
versions=("$@")
|
||||||
if [ -z "$versions" ]; then
|
if [ -z "$versions" ]; then
|
||||||
@@ -56,16 +40,11 @@ if [ -z "${PYENV_VIRTUALENV_INIT}" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${#versions[@]}" -gt 1 ]; then
|
if [ "${#versions[@]}" -gt 1 ]; then
|
||||||
[ -n "$NOERROR" ] || echo "pyenv-virtualenv: cannot activate multiple versions at once: ${versions[@]}" 1>&2
|
echo "pyenv-virtualenv: cannot activate multiple versions at once: ${versions[@]}" 1>&2
|
||||||
echo "false"
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! pyenv-virtualenv-prefix "${versions}" 1>/dev/null 2>&1; then
|
pyenv-virtualenv-prefix "${versions}" 1>/dev/null
|
||||||
[ -n "$NOERROR" ] || echo "pyenv-virtualenv: version \`${versions}' is not a virtualenv" 1>&2
|
|
||||||
echo "false"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
shell="$(basename "${PYENV_SHELL:-$SHELL}")"
|
shell="$(basename "${PYENV_SHELL:-$SHELL}")"
|
||||||
case "$shell" in
|
case "$shell" in
|
||||||
@@ -91,28 +70,23 @@ if [ -f "$profile" ] && grep -q 'pyenv init -' "$profile" && ! grep -q 'pyenv vi
|
|||||||
pyenv-virtualenv-init >&2 || true
|
pyenv-virtualenv-init >&2 || true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "$VERBOSE" ]; then
|
|
||||||
echo "pyenv-virtualenv: activate ${versions}" 1>&2
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$no_shell" ]; then
|
if [ -z "$no_shell" ]; then
|
||||||
echo "pyenv shell \"${versions}\";"
|
echo "pyenv shell \"${versions}\";"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
prefix="$(pyenv-prefix "${versions}")"
|
|
||||||
case "$shell" in
|
case "$shell" in
|
||||||
fish )
|
fish )
|
||||||
cat <<EOS
|
cat <<EOS
|
||||||
set -e PYENV_DEACTIVATE;
|
set -e PYENV_DEACTIVATE;
|
||||||
setenv PYENV_ACTIVATE "${prefix}";
|
setenv PYENV_ACTIVATE "$(pyenv-prefix "${versions}")";
|
||||||
. "${prefix}/bin/activate.fish";
|
. "\${PYENV_ACTIVATE}/bin/activate.fish";
|
||||||
EOS
|
EOS
|
||||||
;;
|
;;
|
||||||
* )
|
* )
|
||||||
cat <<EOS
|
cat <<EOS
|
||||||
unset PYENV_DEACTIVATE;
|
unset PYENV_DEACTIVATE;
|
||||||
export PYENV_ACTIVATE="${prefix}";
|
export PYENV_ACTIVATE="$(pyenv-prefix "${versions}")";
|
||||||
. "${prefix}/bin/activate";
|
source "\${PYENV_ACTIVATE}/bin/activate";
|
||||||
EOS
|
EOS
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|||||||
@@ -9,76 +9,30 @@
|
|||||||
set -e
|
set -e
|
||||||
[ -n "$PYENV_DEBUG" ] && set -x
|
[ -n "$PYENV_DEBUG" ] && set -x
|
||||||
|
|
||||||
unset NOERROR
|
|
||||||
unset VERBOSE
|
|
||||||
|
|
||||||
while [ $# -gt 0 ]; do
|
|
||||||
case "$1" in
|
|
||||||
"--no-error" )
|
|
||||||
NOERROR=1
|
|
||||||
;;
|
|
||||||
"--verbose" )
|
|
||||||
VERBOSE=1
|
|
||||||
;;
|
|
||||||
* )
|
|
||||||
break
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
shift 1
|
|
||||||
done
|
|
||||||
|
|
||||||
shell="$(basename "${PYENV_SHELL:-$SHELL}")"
|
shell="$(basename "${PYENV_SHELL:-$SHELL}")"
|
||||||
case "$shell" in
|
case "$shell" in
|
||||||
fish )
|
fish )
|
||||||
echo "if functions -q deactivate;"
|
cat <<EOS
|
||||||
|
if functions -q deactivate
|
||||||
|
setenv PYENV_DEACTIVATE "\$PYENV_ACTIVATE";
|
||||||
|
set -e PYENV_ACTIVATE;
|
||||||
|
deactivate;
|
||||||
|
end;
|
||||||
|
EOS
|
||||||
;;
|
;;
|
||||||
* )
|
* )
|
||||||
echo "if declare -f deactivate 1>/dev/null 2>&1; then"
|
cat <<EOS
|
||||||
|
if declare -f deactivate 1>/dev/null 2>&1; then
|
||||||
|
export PYENV_DEACTIVATE="\$PYENV_ACTIVATE";
|
||||||
|
unset PYENV_ACTIVATE;
|
||||||
|
deactivate;
|
||||||
|
fi;
|
||||||
|
EOS
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
prefix="${PYENV_ACTIVATE:-${VIRTUAL_ENV}}"
|
|
||||||
|
|
||||||
if [ -n "$VERBOSE" ]; then
|
|
||||||
echo " echo \"pyenv-virtualenv: deactivate ${prefix##*/}\" 1>&2;"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "${PYENV_VIRTUALENV_INIT}" ]; then
|
if [ -z "${PYENV_VIRTUALENV_INIT}" ]; then
|
||||||
# Backward compatibility issue
|
# Backward compatibility issue
|
||||||
# https://github.com/yyuu/pyenv-virtualenv/issues/26
|
# https://github.com/yyuu/pyenv-virtualenv/issues/26
|
||||||
echo " pyenv shell --unset;"
|
echo "pyenv shell --unset;"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "$shell" in
|
|
||||||
fish )
|
|
||||||
cat <<EOS
|
|
||||||
setenv PYENV_DEACTIVATE "$prefix";
|
|
||||||
set -e PYENV_ACTIVATE;
|
|
||||||
deactivate;
|
|
||||||
else;
|
|
||||||
EOS
|
|
||||||
;;
|
|
||||||
* )
|
|
||||||
cat <<EOS
|
|
||||||
export PYENV_DEACTIVATE="$prefix";
|
|
||||||
unset PYENV_ACTIVATE;
|
|
||||||
deactivate;
|
|
||||||
else
|
|
||||||
EOS
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ -z "$NOERROR" ]; then
|
|
||||||
echo " echo \"pyenv-virtualenv: no virtualenv has been activated.\" 1>&2;"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo " false;"
|
|
||||||
|
|
||||||
case "$shell" in
|
|
||||||
fish )
|
|
||||||
echo "end;"
|
|
||||||
;;
|
|
||||||
* )
|
|
||||||
echo "fi;"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
# -f/--force Install even if the version appears to be installed already
|
# -f/--force Install even if the version appears to be installed already
|
||||||
#
|
#
|
||||||
|
|
||||||
PYENV_VIRTUALENV_VERSION="20141012"
|
PYENV_VIRTUALENV_VERSION="20140615"
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
[ -n "$PYENV_DEBUG" ] && set -x
|
[ -n "$PYENV_DEBUG" ] && set -x
|
||||||
@@ -297,11 +297,6 @@ if [ -z "${VERSION_NAME}" ] || [ -z "${VIRTUALENV_NAME}" ]; then
|
|||||||
usage 1
|
usage 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$VIRTUALENV_NAME" != "${VIRTUALENV_NAME%[[:space:]]*}" ]; then
|
|
||||||
echo "pyenv-virtualenv: no whitespace allowed in virtualenv name." 1>&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Set VERSION_NAME as default version in this script
|
# Set VERSION_NAME as default version in this script
|
||||||
export PYENV_VERSION="${VERSION_NAME}"
|
export PYENV_VERSION="${VERSION_NAME}"
|
||||||
|
|
||||||
|
|||||||
@@ -77,21 +77,16 @@ fish )
|
|||||||
function _pyenv_virtualenv_hook --on-event fish_prompt;
|
function _pyenv_virtualenv_hook --on-event fish_prompt;
|
||||||
if [ -n "\$PYENV_ACTIVATE" ]
|
if [ -n "\$PYENV_ACTIVATE" ]
|
||||||
if [ (pyenv version-name) = "system" ]
|
if [ (pyenv version-name) = "system" ]
|
||||||
pyenv deactivate --no-error --verbose
|
eval (pyenv sh-deactivate); or true
|
||||||
set -e PYENV_DEACTIVATE
|
|
||||||
return 0
|
return 0
|
||||||
end
|
end
|
||||||
if [ "\$PYENV_ACTIVATE" != (pyenv prefix) ]
|
if [ "\$PYENV_ACTIVATE" != (pyenv prefix) ]
|
||||||
if pyenv deactivate --no-error --verbose
|
eval (pyenv sh-deactivate); or true
|
||||||
set -e PYENV_DEACTIVATE
|
eval (pyenv sh-activate 2>/dev/null); or true
|
||||||
pyenv activate --no-error --verbose; or set -e PYENV_DEACTIVATE
|
|
||||||
else
|
|
||||||
pyenv activate --no-error --verbose
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
if [ -z "\$VIRTUAL_ENV" ]; and [ "\$PYENV_DEACTIVATE" != (pyenv prefix) ]
|
if [ "\$PYENV_DEACTIVATE" != (pyenv prefix) ]
|
||||||
pyenv activate --no-error --verbose
|
eval (pyenv sh-activate 2>/dev/null); or true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -112,22 +107,17 @@ esac
|
|||||||
if [[ "$shell" != "fish" ]]; then
|
if [[ "$shell" != "fish" ]]; then
|
||||||
cat <<EOS
|
cat <<EOS
|
||||||
if [ -n "\$PYENV_ACTIVATE" ]; then
|
if [ -n "\$PYENV_ACTIVATE" ]; then
|
||||||
if [ "\$(pyenv version-name)" = "system" ]; then
|
if [ "x\`pyenv version-name\`" = "xsystem" ]; then
|
||||||
pyenv deactivate --no-error --verbose
|
pyenv deactivate || true
|
||||||
unset PYENV_DEACTIVATE
|
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
if [ "\$PYENV_ACTIVATE" != "\$(pyenv prefix)" ]; then
|
if [ "x\$PYENV_ACTIVATE" != "x\`pyenv prefix\`" ]; then
|
||||||
if pyenv deactivate --no-error --verbose; then
|
pyenv deactivate || true
|
||||||
unset PYENV_DEACTIVATE
|
pyenv activate 2>/dev/null || true
|
||||||
pyenv activate --no-error --verbose || unset PYENV_DEACTIVATE
|
|
||||||
else
|
|
||||||
pyenv activate --no-error --verbose
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if [ -z "\$VIRTUAL_ENV" ] && [ "\$PYENV_DEACTIVATE" != "\$(pyenv prefix)" ]; then
|
if [ "x\$PYENV_DEACTIVATE" != "x\`pyenv prefix\`" ]; then
|
||||||
pyenv activate --no-error --verbose
|
pyenv activate 2>/dev/null || true
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -32,10 +32,6 @@ base_prefix() { # pyvenv
|
|||||||
|
|
||||||
VIRTUALENV_PREFIX_PATHS=()
|
VIRTUALENV_PREFIX_PATHS=()
|
||||||
for version in "${versions[@]}"; do
|
for version in "${versions[@]}"; do
|
||||||
if [ "$version" = "system" ]; then
|
|
||||||
echo "pyenv-virtualenv: version \`${version}' is not a virtualenv" 1>&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
PREFIX="$(pyenv-prefix "${version}")"
|
PREFIX="$(pyenv-prefix "${version}")"
|
||||||
if [ -f "${PREFIX}/bin/activate" ]; then
|
if [ -f "${PREFIX}/bin/activate" ]; then
|
||||||
VIRTUALENV_PREFIX_PATH="$(real_prefix "${version}" || base_prefix "${version}" || true)"
|
VIRTUALENV_PREFIX_PATH="$(real_prefix "${version}" || base_prefix "${version}" || true)"
|
||||||
|
|||||||
@@ -24,29 +24,7 @@ setup() {
|
|||||||
assert_output <<EOS
|
assert_output <<EOS
|
||||||
unset PYENV_DEACTIVATE;
|
unset PYENV_DEACTIVATE;
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv";
|
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv";
|
||||||
. "${PYENV_ROOT}/versions/venv/bin/activate";
|
source "\${PYENV_ACTIVATE}/bin/activate";
|
||||||
EOS
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "activate virtualenv from current version (verbose)" {
|
|
||||||
export PYENV_VIRTUALENV_INIT=1
|
|
||||||
|
|
||||||
stub pyenv-version-name "echo venv"
|
|
||||||
stub pyenv-virtualenv-prefix "venv : echo \"${PYENV_ROOT}/versions/venv\""
|
|
||||||
stub pyenv-prefix "venv : echo \"${PYENV_ROOT}/versions/venv\""
|
|
||||||
|
|
||||||
PYENV_SHELL="bash" PYENV_VERSION="venv" run pyenv-sh-activate --verbose
|
|
||||||
|
|
||||||
unstub pyenv-version-name
|
|
||||||
unstub pyenv-virtualenv-prefix
|
|
||||||
unstub pyenv-prefix
|
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<EOS
|
|
||||||
pyenv-virtualenv: activate venv
|
|
||||||
unset PYENV_DEACTIVATE;
|
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv";
|
|
||||||
. "${PYENV_ROOT}/versions/venv/bin/activate";
|
|
||||||
EOS
|
EOS
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -68,7 +46,7 @@ EOS
|
|||||||
pyenv shell "venv";
|
pyenv shell "venv";
|
||||||
unset PYENV_DEACTIVATE;
|
unset PYENV_DEACTIVATE;
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv";
|
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv";
|
||||||
. "${PYENV_ROOT}/versions/venv/bin/activate";
|
source "\${PYENV_ACTIVATE}/bin/activate";
|
||||||
EOS
|
EOS
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -89,7 +67,7 @@ EOS
|
|||||||
assert_output <<EOS
|
assert_output <<EOS
|
||||||
set -e PYENV_DEACTIVATE;
|
set -e PYENV_DEACTIVATE;
|
||||||
setenv PYENV_ACTIVATE "${PYENV_ROOT}/versions/venv";
|
setenv PYENV_ACTIVATE "${PYENV_ROOT}/versions/venv";
|
||||||
. "${PYENV_ROOT}/versions/venv/bin/activate.fish";
|
. "\${PYENV_ACTIVATE}/bin/activate.fish";
|
||||||
EOS
|
EOS
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -111,7 +89,7 @@ EOS
|
|||||||
pyenv shell "venv";
|
pyenv shell "venv";
|
||||||
set -e PYENV_DEACTIVATE;
|
set -e PYENV_DEACTIVATE;
|
||||||
setenv PYENV_ACTIVATE "${PYENV_ROOT}/versions/venv";
|
setenv PYENV_ACTIVATE "${PYENV_ROOT}/versions/venv";
|
||||||
. "${PYENV_ROOT}/versions/venv/bin/activate.fish";
|
. "\${PYENV_ACTIVATE}/bin/activate.fish";
|
||||||
EOS
|
EOS
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -131,7 +109,7 @@ EOS
|
|||||||
pyenv shell "venv27";
|
pyenv shell "venv27";
|
||||||
unset PYENV_DEACTIVATE;
|
unset PYENV_DEACTIVATE;
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv27";
|
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv27";
|
||||||
. "${PYENV_ROOT}/versions/venv27/bin/activate";
|
source "\${PYENV_ACTIVATE}/bin/activate";
|
||||||
EOS
|
EOS
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -151,7 +129,7 @@ EOS
|
|||||||
pyenv shell "venv27";
|
pyenv shell "venv27";
|
||||||
unset PYENV_DEACTIVATE;
|
unset PYENV_DEACTIVATE;
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv27";
|
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv27";
|
||||||
. "${PYENV_ROOT}/versions/venv27/bin/activate";
|
source "\${PYENV_ACTIVATE}/bin/activate";
|
||||||
EOS
|
EOS
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -172,23 +150,6 @@ EOS
|
|||||||
unstub pyenv-virtualenv-prefix
|
unstub pyenv-virtualenv-prefix
|
||||||
|
|
||||||
assert_failure
|
assert_failure
|
||||||
assert_output <<EOS
|
|
||||||
pyenv-virtualenv: version \`3.3.3' is not a virtualenv
|
|
||||||
false
|
|
||||||
EOS
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "should fail if the version is not a virtualenv (no-error)" {
|
|
||||||
stub pyenv-virtualenv-prefix "3.3.3 : false"
|
|
||||||
|
|
||||||
run pyenv-sh-activate --no-error "3.3.3"
|
|
||||||
|
|
||||||
unstub pyenv-virtualenv-prefix
|
|
||||||
|
|
||||||
assert_failure
|
|
||||||
assert_output <<EOS
|
|
||||||
false
|
|
||||||
EOS
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "should fail if there are multiple versions" {
|
@test "should fail if there are multiple versions" {
|
||||||
@@ -197,16 +158,6 @@ EOS
|
|||||||
assert_failure
|
assert_failure
|
||||||
assert_output <<EOS
|
assert_output <<EOS
|
||||||
pyenv-virtualenv: cannot activate multiple versions at once: venv venv27
|
pyenv-virtualenv: cannot activate multiple versions at once: venv venv27
|
||||||
false
|
|
||||||
EOS
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "should fail if there are multiple versions (no-error)" {
|
|
||||||
run pyenv-sh-activate --no-error "venv" "venv27"
|
|
||||||
|
|
||||||
assert_failure
|
|
||||||
assert_output <<EOS
|
|
||||||
false
|
|
||||||
EOS
|
EOS
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,211 +8,63 @@ setup() {
|
|||||||
|
|
||||||
@test "deactivate virtualenv" {
|
@test "deactivate virtualenv" {
|
||||||
export PYENV_VIRTUALENV_INIT=1
|
export PYENV_VIRTUALENV_INIT=1
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv"
|
|
||||||
|
|
||||||
PYENV_SHELL="bash" run pyenv-sh-deactivate
|
PYENV_SHELL="bash" run pyenv-sh-deactivate
|
||||||
|
|
||||||
assert_success
|
assert_success
|
||||||
assert_output <<EOS
|
assert_output <<EOS
|
||||||
if declare -f deactivate 1>/dev/null 2>&1; then
|
if declare -f deactivate 1>/dev/null 2>&1; then
|
||||||
export PYENV_DEACTIVATE="$PYENV_ACTIVATE";
|
export PYENV_DEACTIVATE="\$PYENV_ACTIVATE";
|
||||||
unset PYENV_ACTIVATE;
|
unset PYENV_ACTIVATE;
|
||||||
deactivate;
|
deactivate;
|
||||||
else
|
|
||||||
echo "pyenv-virtualenv: no virtualenv has been activated." 1>&2;
|
|
||||||
false;
|
|
||||||
fi;
|
|
||||||
EOS
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "deactivate virtualenv (verbose)" {
|
|
||||||
export PYENV_VIRTUALENV_INIT=1
|
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv"
|
|
||||||
|
|
||||||
PYENV_SHELL="bash" run pyenv-sh-deactivate --verbose
|
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<EOS
|
|
||||||
if declare -f deactivate 1>/dev/null 2>&1; then
|
|
||||||
echo "pyenv-virtualenv: deactivate venv" 1>&2;
|
|
||||||
export PYENV_DEACTIVATE="$PYENV_ACTIVATE";
|
|
||||||
unset PYENV_ACTIVATE;
|
|
||||||
deactivate;
|
|
||||||
else
|
|
||||||
echo "pyenv-virtualenv: no virtualenv has been activated." 1>&2;
|
|
||||||
false;
|
|
||||||
fi;
|
|
||||||
EOS
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "deactivate virtualenv (no-error)" {
|
|
||||||
export PYENV_VIRTUALENV_INIT=1
|
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv"
|
|
||||||
|
|
||||||
PYENV_SHELL="bash" run pyenv-sh-deactivate --no-error
|
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<EOS
|
|
||||||
if declare -f deactivate 1>/dev/null 2>&1; then
|
|
||||||
export PYENV_DEACTIVATE="$PYENV_ACTIVATE";
|
|
||||||
unset PYENV_ACTIVATE;
|
|
||||||
deactivate;
|
|
||||||
else
|
|
||||||
false;
|
|
||||||
fi;
|
fi;
|
||||||
EOS
|
EOS
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "deactivate virtualenv (without pyenv-virtualenv-init)" {
|
@test "deactivate virtualenv (without pyenv-virtualenv-init)" {
|
||||||
export PYENV_VIRTUALENV_INIT=
|
export PYENV_VIRTUALENV_INIT=
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv"
|
|
||||||
|
|
||||||
PYENV_SHELL="bash" run pyenv-sh-deactivate
|
PYENV_SHELL="bash" run pyenv-sh-deactivate
|
||||||
|
|
||||||
assert_success
|
assert_success
|
||||||
assert_output <<EOS
|
assert_output <<EOS
|
||||||
if declare -f deactivate 1>/dev/null 2>&1; then
|
if declare -f deactivate 1>/dev/null 2>&1; then
|
||||||
pyenv shell --unset;
|
export PYENV_DEACTIVATE="\$PYENV_ACTIVATE";
|
||||||
export PYENV_DEACTIVATE="$PYENV_ACTIVATE";
|
|
||||||
unset PYENV_ACTIVATE;
|
unset PYENV_ACTIVATE;
|
||||||
deactivate;
|
deactivate;
|
||||||
else
|
|
||||||
echo "pyenv-virtualenv: no virtualenv has been activated." 1>&2;
|
|
||||||
false;
|
|
||||||
fi;
|
|
||||||
EOS
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "deactivate virtualenv (without pyenv-virtualenv-init) (no-error)" {
|
|
||||||
export PYENV_VIRTUALENV_INIT=
|
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv"
|
|
||||||
|
|
||||||
PYENV_SHELL="bash" run pyenv-sh-deactivate --no-error
|
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<EOS
|
|
||||||
if declare -f deactivate 1>/dev/null 2>&1; then
|
|
||||||
pyenv shell --unset;
|
|
||||||
export PYENV_DEACTIVATE="$PYENV_ACTIVATE";
|
|
||||||
unset PYENV_ACTIVATE;
|
|
||||||
deactivate;
|
|
||||||
else
|
|
||||||
false;
|
|
||||||
fi;
|
|
||||||
EOS
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "deactivate virtualenv which has been activated manually" {
|
|
||||||
export PYENV_VIRTUALENV_INIT=1
|
|
||||||
export VIRTUAL_ENV="${PYENV_ROOT}/versions/venv"
|
|
||||||
|
|
||||||
PYENV_SHELL="bash" run pyenv-sh-deactivate
|
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<EOS
|
|
||||||
if declare -f deactivate 1>/dev/null 2>&1; then
|
|
||||||
export PYENV_DEACTIVATE="$VIRTUAL_ENV";
|
|
||||||
unset PYENV_ACTIVATE;
|
|
||||||
deactivate;
|
|
||||||
else
|
|
||||||
echo "pyenv-virtualenv: no virtualenv has been activated." 1>&2;
|
|
||||||
false;
|
|
||||||
fi;
|
fi;
|
||||||
|
pyenv shell --unset;
|
||||||
EOS
|
EOS
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "deactivate virtualenv (fish)" {
|
@test "deactivate virtualenv (fish)" {
|
||||||
export PYENV_VIRTUALENV_INIT=1
|
export PYENV_VIRTUALENV_INIT=1
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv"
|
|
||||||
|
|
||||||
PYENV_SHELL="fish" run pyenv-sh-deactivate
|
PYENV_SHELL="fish" run pyenv-sh-deactivate
|
||||||
|
|
||||||
assert_success
|
assert_success
|
||||||
assert_output <<EOS
|
assert_output <<EOS
|
||||||
if functions -q deactivate;
|
if functions -q deactivate
|
||||||
setenv PYENV_DEACTIVATE "$PYENV_ACTIVATE";
|
setenv PYENV_DEACTIVATE "\$PYENV_ACTIVATE";
|
||||||
set -e PYENV_ACTIVATE;
|
set -e PYENV_ACTIVATE;
|
||||||
deactivate;
|
deactivate;
|
||||||
else;
|
|
||||||
echo "pyenv-virtualenv: no virtualenv has been activated." 1>&2;
|
|
||||||
false;
|
|
||||||
end;
|
|
||||||
EOS
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "deactivate virtualenv (fish) (no-error)" {
|
|
||||||
export PYENV_VIRTUALENV_INIT=1
|
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv"
|
|
||||||
|
|
||||||
PYENV_SHELL="fish" run pyenv-sh-deactivate --no-error
|
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<EOS
|
|
||||||
if functions -q deactivate;
|
|
||||||
setenv PYENV_DEACTIVATE "$PYENV_ACTIVATE";
|
|
||||||
set -e PYENV_ACTIVATE;
|
|
||||||
deactivate;
|
|
||||||
else;
|
|
||||||
false;
|
|
||||||
end;
|
end;
|
||||||
EOS
|
EOS
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "deactivate virtualenv (fish) (without pyenv-virtualenv-init)" {
|
@test "deactivate virtualenv (fish) (without pyenv-virtualenv-init)" {
|
||||||
export PYENV_VIRTUALENV_INIT=
|
export PYENV_VIRTUALENV_INIT=
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv"
|
|
||||||
|
|
||||||
PYENV_SHELL="fish" run pyenv-sh-deactivate
|
PYENV_SHELL="fish" run pyenv-sh-deactivate
|
||||||
|
|
||||||
assert_success
|
assert_success
|
||||||
assert_output <<EOS
|
assert_output <<EOS
|
||||||
if functions -q deactivate;
|
if functions -q deactivate
|
||||||
pyenv shell --unset;
|
setenv PYENV_DEACTIVATE "\$PYENV_ACTIVATE";
|
||||||
setenv PYENV_DEACTIVATE "$PYENV_ACTIVATE";
|
|
||||||
set -e PYENV_ACTIVATE;
|
set -e PYENV_ACTIVATE;
|
||||||
deactivate;
|
deactivate;
|
||||||
else;
|
|
||||||
echo "pyenv-virtualenv: no virtualenv has been activated." 1>&2;
|
|
||||||
false;
|
|
||||||
end;
|
|
||||||
EOS
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "deactivate virtualenv (fish) (without pyenv-virtualenv-init) (no-error)" {
|
|
||||||
export PYENV_VIRTUALENV_INIT=
|
|
||||||
export PYENV_ACTIVATE="${PYENV_ROOT}/versions/venv"
|
|
||||||
|
|
||||||
PYENV_SHELL="fish" run pyenv-sh-deactivate --no-error
|
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<EOS
|
|
||||||
if functions -q deactivate;
|
|
||||||
pyenv shell --unset;
|
|
||||||
setenv PYENV_DEACTIVATE "$PYENV_ACTIVATE";
|
|
||||||
set -e PYENV_ACTIVATE;
|
|
||||||
deactivate;
|
|
||||||
else;
|
|
||||||
false;
|
|
||||||
end;
|
|
||||||
EOS
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "deactivate virtualenv which has been activated manually (fish)" {
|
|
||||||
export PYENV_VIRTUALENV_INIT=1
|
|
||||||
export VIRTUAL_ENV="${PYENV_ROOT}/versions/venv"
|
|
||||||
|
|
||||||
PYENV_SHELL="fish" run pyenv-sh-deactivate
|
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<EOS
|
|
||||||
if functions -q deactivate;
|
|
||||||
setenv PYENV_DEACTIVATE "$VIRTUAL_ENV";
|
|
||||||
set -e PYENV_ACTIVATE;
|
|
||||||
deactivate;
|
|
||||||
else;
|
|
||||||
echo "pyenv-virtualenv: no virtualenv has been activated." 1>&2;
|
|
||||||
false;
|
|
||||||
end;
|
end;
|
||||||
|
pyenv shell --unset;
|
||||||
EOS
|
EOS
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -32,22 +32,17 @@ load test_helper
|
|||||||
export PYENV_VIRTUALENV_INIT=1;
|
export PYENV_VIRTUALENV_INIT=1;
|
||||||
_pyenv_virtualenv_hook() {
|
_pyenv_virtualenv_hook() {
|
||||||
if [ -n "\$PYENV_ACTIVATE" ]; then
|
if [ -n "\$PYENV_ACTIVATE" ]; then
|
||||||
if [ "\$(pyenv version-name)" = "system" ]; then
|
if [ "x\`pyenv version-name\`" = "xsystem" ]; then
|
||||||
pyenv deactivate --no-error --verbose
|
pyenv deactivate || true
|
||||||
unset PYENV_DEACTIVATE
|
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
if [ "\$PYENV_ACTIVATE" != "\$(pyenv prefix)" ]; then
|
if [ "x\$PYENV_ACTIVATE" != "x\`pyenv prefix\`" ]; then
|
||||||
if pyenv deactivate --no-error --verbose; then
|
pyenv deactivate || true
|
||||||
unset PYENV_DEACTIVATE
|
pyenv activate 2>/dev/null || true
|
||||||
pyenv activate --no-error --verbose || unset PYENV_DEACTIVATE
|
|
||||||
else
|
|
||||||
pyenv activate --no-error --verbose
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if [ -z "\$VIRTUAL_ENV" ] && [ "\$PYENV_DEACTIVATE" != "\$(pyenv prefix)" ]; then
|
if [ "x\$PYENV_DEACTIVATE" != "x\`pyenv prefix\`" ]; then
|
||||||
pyenv activate --no-error --verbose
|
pyenv activate 2>/dev/null || true
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
};
|
};
|
||||||
@@ -65,21 +60,16 @@ setenv PYENV_VIRTUALENV_INIT 1;
|
|||||||
function _pyenv_virtualenv_hook --on-event fish_prompt;
|
function _pyenv_virtualenv_hook --on-event fish_prompt;
|
||||||
if [ -n "\$PYENV_ACTIVATE" ]
|
if [ -n "\$PYENV_ACTIVATE" ]
|
||||||
if [ (pyenv version-name) = "system" ]
|
if [ (pyenv version-name) = "system" ]
|
||||||
pyenv deactivate --no-error --verbose
|
eval (pyenv sh-deactivate); or true
|
||||||
set -e PYENV_DEACTIVATE
|
|
||||||
return 0
|
return 0
|
||||||
end
|
end
|
||||||
if [ "\$PYENV_ACTIVATE" != (pyenv prefix) ]
|
if [ "\$PYENV_ACTIVATE" != (pyenv prefix) ]
|
||||||
if pyenv deactivate --no-error --verbose
|
eval (pyenv sh-deactivate); or true
|
||||||
set -e PYENV_DEACTIVATE
|
eval (pyenv sh-activate 2>/dev/null); or true
|
||||||
pyenv activate --no-error --verbose; or set -e PYENV_DEACTIVATE
|
|
||||||
else
|
|
||||||
pyenv activate --no-error --verbose
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
if [ -z "\$VIRTUAL_ENV" ]; and [ "\$PYENV_DEACTIVATE" != (pyenv prefix) ]
|
if [ "\$PYENV_DEACTIVATE" != (pyenv prefix) ]
|
||||||
pyenv activate --no-error --verbose
|
eval (pyenv sh-activate 2>/dev/null); or true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -93,22 +83,17 @@ EOS
|
|||||||
export PYENV_VIRTUALENV_INIT=1;
|
export PYENV_VIRTUALENV_INIT=1;
|
||||||
_pyenv_virtualenv_hook() {
|
_pyenv_virtualenv_hook() {
|
||||||
if [ -n "\$PYENV_ACTIVATE" ]; then
|
if [ -n "\$PYENV_ACTIVATE" ]; then
|
||||||
if [ "\$(pyenv version-name)" = "system" ]; then
|
if [ "x\`pyenv version-name\`" = "xsystem" ]; then
|
||||||
pyenv deactivate --no-error --verbose
|
pyenv deactivate || true
|
||||||
unset PYENV_DEACTIVATE
|
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
if [ "\$PYENV_ACTIVATE" != "\$(pyenv prefix)" ]; then
|
if [ "x\$PYENV_ACTIVATE" != "x\`pyenv prefix\`" ]; then
|
||||||
if pyenv deactivate --no-error --verbose; then
|
pyenv deactivate || true
|
||||||
unset PYENV_DEACTIVATE
|
pyenv activate 2>/dev/null || true
|
||||||
pyenv activate --no-error --verbose || unset PYENV_DEACTIVATE
|
|
||||||
else
|
|
||||||
pyenv activate --no-error --verbose
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if [ -z "\$VIRTUAL_ENV" ] && [ "\$PYENV_DEACTIVATE" != "\$(pyenv prefix)" ]; then
|
if [ "x\$PYENV_DEACTIVATE" != "x\`pyenv prefix\`" ]; then
|
||||||
pyenv activate --no-error --verbose
|
pyenv activate 2>/dev/null || true
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ load test_helper
|
|||||||
|
|
||||||
setup() {
|
setup() {
|
||||||
export PYENV_ROOT="${TMP}/pyenv"
|
export PYENV_ROOT="${TMP}/pyenv"
|
||||||
export PYENV_VIRTUALENV_VERSION="20141012"
|
export PYENV_VIRTUALENV_VERSION="20140615"
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "display virtualenv version" {
|
@test "display virtualenv version" {
|
||||||
|
|||||||
@@ -102,19 +102,6 @@ ${PYENV_ROOT}/versions/3.3.3:${PYENV_ROOT}/versions/3.4.0
|
|||||||
OUT
|
OUT
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "should fail if the version is the system" {
|
|
||||||
stub pyenv-version-name "echo system"
|
|
||||||
|
|
||||||
PYENV_VERSION="system" run pyenv-virtualenv-prefix
|
|
||||||
|
|
||||||
unstub pyenv-version-name
|
|
||||||
|
|
||||||
assert_failure
|
|
||||||
assert_output <<OUT
|
|
||||||
pyenv-virtualenv: version \`system' is not a virtualenv
|
|
||||||
OUT
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "should fail if the version is not a virtualenv" {
|
@test "should fail if the version is not a virtualenv" {
|
||||||
stub pyenv-version-name "echo 3.4.0"
|
stub pyenv-version-name "echo 3.4.0"
|
||||||
stub pyenv-prefix "3.4.0 : echo \"${PYENV_ROOT}/versions/3.4.0\""
|
stub pyenv-prefix "3.4.0 : echo \"${PYENV_ROOT}/versions/3.4.0\""
|
||||||
|
|||||||
@@ -132,21 +132,3 @@ OUT
|
|||||||
unstub pyenv-exec
|
unstub pyenv-exec
|
||||||
unstub curl
|
unstub curl
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "no whitespace allowed in virtualenv name" {
|
|
||||||
run pyenv-virtualenv "3.2.1" "foo bar"
|
|
||||||
|
|
||||||
assert_failure
|
|
||||||
assert_output <<OUT
|
|
||||||
pyenv-virtualenv: no whitespace allowed in virtualenv name.
|
|
||||||
OUT
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "no tab allowed in virtualenv name" {
|
|
||||||
run pyenv-virtualenv "3.2.1" "foo bar baz"
|
|
||||||
|
|
||||||
assert_failure
|
|
||||||
assert_output <<OUT
|
|
||||||
pyenv-virtualenv: no whitespace allowed in virtualenv name.
|
|
||||||
OUT
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user