mirror of
https://github.com/pyenv/pyenv-virtualenv.git
synced 2025-11-09 12:03:55 -05:00
Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
42f8ed2dce | ||
|
|
a75aa66490 | ||
|
|
9a03eb5b9c | ||
|
|
e67dd07f1b | ||
|
|
077edc3b4d | ||
|
|
0b24ff557e | ||
|
|
6a3172ff47 | ||
|
|
894d4af8a3 | ||
|
|
980159f221 | ||
|
|
051cd5880c | ||
|
|
cfb8691fc5 | ||
|
|
74ff2ce7af | ||
|
|
b1d0d72343 | ||
|
|
219a527a78 | ||
|
|
393bcc36b8 | ||
|
|
5419dc7320 | ||
|
|
94b2c9d5d6 | ||
|
|
e690650fd6 | ||
|
|
74bc08b7dc | ||
|
|
a22521e946 | ||
|
|
b4eb09d1dd | ||
|
|
52cb0b1086 | ||
|
|
1e66783091 | ||
|
|
b8dd4fcb53 | ||
|
|
4c8da67f02 | ||
|
|
c2ba4952ff | ||
|
|
927914b25f | ||
|
|
e339fde2f3 | ||
|
|
e83a1f12c2 | ||
|
|
2727087757 | ||
|
|
f64c8ed0dd |
@@ -5,3 +5,9 @@ language: c
|
|||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
on_success: never
|
on_success: never
|
||||||
|
deploy:
|
||||||
|
provider: releases
|
||||||
|
api_key:
|
||||||
|
secure: DsGAt0UmTSGVfsNJ6LmM+LvsV6FYmvX4FcET82XrskPiQW+N8+8JZR8WuZxfmwdJZu+dkkdoq6gYgL2xF7m4LxRG7aw3B5TtbMTrJQeW0hdtCSBwbbYyvwcp2m7ywE8lGAfZQITaGj1R6f2Cgh8cgtcrErjcF0KJsYlVlgNv+/M=
|
||||||
|
on:
|
||||||
|
tags: true
|
||||||
|
|||||||
13
CHANGELOG.md
13
CHANGELOG.md
@@ -1,5 +1,16 @@
|
|||||||
## Version History
|
## Version History
|
||||||
|
|
||||||
|
#### 1.1.2
|
||||||
|
|
||||||
|
* Use custom get-pip URL based on the target version (#253, #254, #255)
|
||||||
|
* Source conda 4.4.4 shell files (#251)
|
||||||
|
* Evaluate force flag before testing if venv exists (#232)
|
||||||
|
|
||||||
|
#### 1.1.1
|
||||||
|
|
||||||
|
* Set `CONDA_PREFIX` to make is useable in conda activate/deactivate scripts (#224)
|
||||||
|
* Generate `pydoc` executable after creating new virtualenv (#197, #230)
|
||||||
|
|
||||||
#### 1.1.0
|
#### 1.1.0
|
||||||
|
|
||||||
* fish: use "set -gx" instead of "setenv" (#215, #216, #217, #218)
|
* fish: use "set -gx" instead of "setenv" (#215, #216, #217, #218)
|
||||||
@@ -37,7 +48,7 @@
|
|||||||
* Improved interoperability with Anaconda/Miniconda (#103, #106, #107, #108)
|
* Improved interoperability with Anaconda/Miniconda (#103, #106, #107, #108)
|
||||||
* Create `virtualenv` inside `envs` directory of source version, like Anaconda/Miniconda (#103, #107)
|
* Create `virtualenv` inside `envs` directory of source version, like Anaconda/Miniconda (#103, #107)
|
||||||
* Rewrite `pyenv activate` and `pyenv deactivate` without using scripts provided by virtualenv and conda (#51, #69, #103, #104, #121)
|
* Rewrite `pyenv activate` and `pyenv deactivate` without using scripts provided by virtualenv and conda (#51, #69, #103, #104, #121)
|
||||||
* Improve the `pyenv activate` behaviour on multipe versions (#105, #111)
|
* Improve the `pyenv activate` behaviour on multiple versions (#105, #111)
|
||||||
* Reject creating a virtualenv named `system` (yyuu/pyenv#475)
|
* Reject creating a virtualenv named `system` (yyuu/pyenv#475)
|
||||||
* Add `--skip-aliases` to `pyenv virtualenvs` (#120)
|
* Add `--skip-aliases` to `pyenv virtualenvs` (#120)
|
||||||
* Stop showing `version not installed` warning messages in precmd (#49)
|
* Stop showing `version not installed` warning messages in precmd (#49)
|
||||||
|
|||||||
@@ -40,7 +40,14 @@ From inside that directory you can:
|
|||||||
$ echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bash_profile
|
$ echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bash_profile
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Fish shell note**: Add this to your `~/.config/fish/config.fish`
|
||||||
|
|
||||||
|
```sh
|
||||||
|
status --is-interactive; and source (pyenv virtualenv-init -|psub)
|
||||||
|
```
|
||||||
|
|
||||||
**Zsh note**: Modify your `~/.zshenv` file instead of `~/.bash_profile`.
|
**Zsh note**: Modify your `~/.zshenv` file instead of `~/.bash_profile`.
|
||||||
|
|
||||||
**Pyenv note**: You may also need to add `eval "$(pyenv init -)"` to your profile if you haven't done so already.
|
**Pyenv note**: You may also need to add `eval "$(pyenv init -)"` to your profile if you haven't done so already.
|
||||||
|
|
||||||
3. **Restart your shell to enable pyenv-virtualenv**
|
3. **Restart your shell to enable pyenv-virtualenv**
|
||||||
|
|||||||
@@ -237,12 +237,21 @@ if [ -x "${prefix}/bin/conda" ]; then
|
|||||||
shopt -s nullglob
|
shopt -s nullglob
|
||||||
case "${shell}" in
|
case "${shell}" in
|
||||||
fish )
|
fish )
|
||||||
: # conda doesn't support fish
|
# conda 4.4 and above
|
||||||
|
for script in "${prefix}/etc/fish/conf.d"/*.fish; do
|
||||||
|
echo "source \"${script}\";"
|
||||||
|
done
|
||||||
;;
|
;;
|
||||||
* )
|
* )
|
||||||
|
CONDA_PREFIX="$prefix"
|
||||||
|
echo "export CONDA_PREFIX=\"${CONDA_PREFIX}\";"
|
||||||
for script in "${prefix}/etc/conda/activate.d"/*.sh; do
|
for script in "${prefix}/etc/conda/activate.d"/*.sh; do
|
||||||
echo ". \"${script}\";"
|
echo ". \"${script}\";"
|
||||||
done
|
done
|
||||||
|
# conda 4.4 and above
|
||||||
|
for script in "${prefix}/etc/profile.d"/*.sh; do
|
||||||
|
echo ". \"${script}\";"
|
||||||
|
done
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
shopt -u nullglob
|
shopt -u nullglob
|
||||||
|
|||||||
@@ -69,6 +69,7 @@ if [ -x "${prefix}/bin/conda" ]; then
|
|||||||
for script in "${prefix}/etc/conda/deactivate.d"/*.sh; do
|
for script in "${prefix}/etc/conda/deactivate.d"/*.sh; do
|
||||||
echo ". \"${script}\";"
|
echo ". \"${script}\";"
|
||||||
done
|
done
|
||||||
|
echo "unset CONDA_PREFIX"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
shopt -u nullglob
|
shopt -u nullglob
|
||||||
|
|||||||
@@ -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="1.1.0"
|
PYENV_VIRTUALENV_VERSION="1.1.3"
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
[ -n "$PYENV_DEBUG" ] && set -x
|
[ -n "$PYENV_DEBUG" ] && set -x
|
||||||
@@ -162,7 +162,7 @@ build_package_ez_setup() {
|
|||||||
echo "Installing setuptools from ${EZ_SETUP}..." 1>&2
|
echo "Installing setuptools from ${EZ_SETUP}..." 1>&2
|
||||||
cat "${EZ_SETUP}"
|
cat "${EZ_SETUP}"
|
||||||
else
|
else
|
||||||
[ -n "${EZ_SETUP_URL}" ] || EZ_SETUP_URL="https://bootstrap.pypa.io/ez_setup.py"
|
[ -n "${EZ_SETUP_URL}" ]
|
||||||
echo "Installing setuptools from ${EZ_SETUP_URL}..." 1>&2
|
echo "Installing setuptools from ${EZ_SETUP_URL}..." 1>&2
|
||||||
http get "${EZ_SETUP_URL}"
|
http get "${EZ_SETUP_URL}"
|
||||||
fi
|
fi
|
||||||
@@ -180,7 +180,7 @@ build_package_get_pip() {
|
|||||||
echo "Installing pip from ${GET_PIP}..." 1>&2
|
echo "Installing pip from ${GET_PIP}..." 1>&2
|
||||||
cat "${GET_PIP}"
|
cat "${GET_PIP}"
|
||||||
else
|
else
|
||||||
[ -n "${GET_PIP_URL}" ] || GET_PIP_URL="https://bootstrap.pypa.io/get-pip.py"
|
[ -n "${GET_PIP_URL}" ]
|
||||||
echo "Installing pip from ${GET_PIP_URL}..." 1>&2
|
echo "Installing pip from ${GET_PIP_URL}..." 1>&2
|
||||||
http get "${GET_PIP_URL}"
|
http get "${GET_PIP_URL}"
|
||||||
fi
|
fi
|
||||||
@@ -349,9 +349,11 @@ if [[ "${VIRTUALENV_PATH/*/envs/*}" != "${PYENV_ROOT}/versions" ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "${COMPAT_VIRTUALENV_PATH}" ]; then
|
if [ -n "${COMPAT_VIRTUALENV_PATH}" ]; then
|
||||||
if [ -e "${COMPAT_VIRTUALENV_PATH}" ] || [ -L "${COMPAT_VIRTUALENV_PATH}" ]; then
|
if [ -z ${FORCE} ]; then
|
||||||
echo "pyenv-virtualenv: \`${COMPAT_VIRTUALENV_PATH}' already exists." 1>&2
|
if [ -e "${COMPAT_VIRTUALENV_PATH}" ] || [ -L "${COMPAT_VIRTUALENV_PATH}" ]; then
|
||||||
exit 1
|
echo "pyenv-virtualenv: \`${COMPAT_VIRTUALENV_PATH}' already exists." 1>&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -447,11 +449,39 @@ unset VIRTUALENV_VERSION
|
|||||||
|
|
||||||
|
|
||||||
# Download specified version of ez_setup.py/get-pip.py.
|
# Download specified version of ez_setup.py/get-pip.py.
|
||||||
if [ -n "${SETUPTOOLS_VERSION}" ]; then
|
if [ -z "${EZ_SETUP_URL}" ]; then
|
||||||
EZ_SETUP_URL="https://bitbucket.org/pypa/setuptools/raw/${SETUPTOOLS_VERSION}/ez_setup.py"
|
if [ -n "${SETUPTOOLS_VERSION}" ]; then
|
||||||
|
EZ_SETUP_URL="https://bitbucket.org/pypa/setuptools/raw/${SETUPTOOLS_VERSION}/ez_setup.py"
|
||||||
|
unset SETUPTOOLS_VERSION
|
||||||
|
else
|
||||||
|
EZ_SETUP_URL="https://bootstrap.pypa.io/ez_setup.py"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
if [ -n "${PIP_VERSION}" ]; then
|
if [ -z "${GET_PIP_URL}" ]; then
|
||||||
GET_PIP_URL="https://raw.githubusercontent.com/pypa/pip/${PIP_VERSION}/contrib/get-pip.py"
|
if [ -n "${PIP_VERSION}" ]; then
|
||||||
|
{ colorize 1 "WARNING"
|
||||||
|
echo ": Setting PIP_VERSION=${PIP_VERSION} is no longer supported and may cause failures during the install process."
|
||||||
|
} 1>&2
|
||||||
|
GET_PIP_URL="https://raw.githubusercontent.com/pypa/pip/${PIP_VERSION}/contrib/get-pip.py"
|
||||||
|
# Unset `PIP_VERSION` from environment before invoking `get-pip.py` to deal with "ValueError: invalid truth value" (pypa/pip#4528)
|
||||||
|
unset PIP_VERSION
|
||||||
|
else
|
||||||
|
# Use custom get-pip URL based on the target version (#1127)
|
||||||
|
case "${PYENV_VERSION}" in
|
||||||
|
2.6 | 2.6.* )
|
||||||
|
GET_PIP_URL="https://bootstrap.pypa.io/2.6/get-pip.py"
|
||||||
|
;;
|
||||||
|
3.2 | 3.2.* )
|
||||||
|
GET_PIP_URL="https://bootstrap.pypa.io/3.2/get-pip.py"
|
||||||
|
;;
|
||||||
|
3.3 | 3.3.* )
|
||||||
|
GET_PIP_URL="https://bootstrap.pypa.io/3.3/get-pip.py"
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
GET_PIP_URL="https://bootstrap.pypa.io/get-pip.py"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
@@ -533,6 +563,17 @@ if [ -d "${VIRTUALENV_PATH}" ] && [ -n "${COMPAT_VIRTUALENV_PATH}" ]; then
|
|||||||
ln -fs "${VIRTUALENV_PATH}" "${COMPAT_VIRTUALENV_PATH}"
|
ln -fs "${VIRTUALENV_PATH}" "${COMPAT_VIRTUALENV_PATH}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ ! -e "${VIRTUALENV_PATH}/bin/pydoc" ]; then
|
||||||
|
mkdir -p "${VIRTUALENV_PATH}/bin"
|
||||||
|
cat <<EOS > "${VIRTUALENV_PATH}/bin/pydoc"
|
||||||
|
#!${VIRTUALENV_PATH}/bin/python
|
||||||
|
import pydoc
|
||||||
|
if __name__ == '__main__':
|
||||||
|
pydoc.cli()
|
||||||
|
EOS
|
||||||
|
chmod +x "${VIRTUALENV_PATH}/bin/pydoc"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -z "${NO_ENSUREPIP}" ]; then
|
if [ -z "${NO_ENSUREPIP}" ]; then
|
||||||
## Install setuptools and pip.
|
## Install setuptools and pip.
|
||||||
PYENV_VERSION="${VIRTUALENV_NAME}" build_package_ensurepip
|
PYENV_VERSION="${VIRTUALENV_NAME}" build_package_ensurepip
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ if [ ! -x "${PYENV_COMMAND_PATH}" ] && [[ "${PYENV_COMMAND_PATH##*/}" == "python
|
|||||||
if [ -f "${PYENV_ROOT}/versions/${version}/bin/conda" ]; then
|
if [ -f "${PYENV_ROOT}/versions/${version}/bin/conda" ]; then
|
||||||
: # do nothing for conda's environments
|
: # do nothing for conda's environments
|
||||||
else
|
else
|
||||||
if [ -f "${PYENV_ROOT}/versions/${version}/bin/pyvenv.cfg" ]; then
|
if [ -f "${PYENV_ROOT}/versions/${version}/pyvenv.cfg" ]; then
|
||||||
# venv
|
# venv
|
||||||
virtualenv_binpath="$(cut -b 1-1024 "${PYENV_ROOT}/versions/${version}/pyvenv.cfg" | sed -n '/^ *home *= */s///p' || true)"
|
virtualenv_binpath="$(cut -b 1-1024 "${PYENV_ROOT}/versions/${version}/pyvenv.cfg" | sed -n '/^ *home *= */s///p' || true)"
|
||||||
virtualenv_prefix="${virtualenv_binpath%/bin}"
|
virtualenv_prefix="${virtualenv_binpath%/bin}"
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ export CONDA_DEFAULT_ENV="root";
|
|||||||
pyenv-virtualenv: prompt changing will be removed from future release. configure \`export PYENV_VIRTUALENV_DISABLE_PROMPT=1' to simulate the behavior.
|
pyenv-virtualenv: prompt changing will be removed from future release. configure \`export PYENV_VIRTUALENV_DISABLE_PROMPT=1' to simulate the behavior.
|
||||||
export _OLD_VIRTUAL_PS1="\${PS1}";
|
export _OLD_VIRTUAL_PS1="\${PS1}";
|
||||||
export PS1="(anaconda-2.3.0) \${PS1}";
|
export PS1="(anaconda-2.3.0) \${PS1}";
|
||||||
|
export CONDA_PREFIX="${TMP}/pyenv/versions/anaconda-2.3.0";
|
||||||
EOS
|
EOS
|
||||||
|
|
||||||
unstub pyenv-version-name
|
unstub pyenv-version-name
|
||||||
@@ -97,6 +98,7 @@ export CONDA_DEFAULT_ENV="root";
|
|||||||
pyenv-virtualenv: prompt changing will be removed from future release. configure \`export PYENV_VIRTUALENV_DISABLE_PROMPT=1' to simulate the behavior.
|
pyenv-virtualenv: prompt changing will be removed from future release. configure \`export PYENV_VIRTUALENV_DISABLE_PROMPT=1' to simulate the behavior.
|
||||||
export _OLD_VIRTUAL_PS1="\${PS1}";
|
export _OLD_VIRTUAL_PS1="\${PS1}";
|
||||||
export PS1="(miniconda-3.9.1) \${PS1}";
|
export PS1="(miniconda-3.9.1) \${PS1}";
|
||||||
|
export CONDA_PREFIX="${TMP}/pyenv/versions/miniconda-3.9.1";
|
||||||
EOS
|
EOS
|
||||||
|
|
||||||
unstub pyenv-virtualenv-prefix
|
unstub pyenv-virtualenv-prefix
|
||||||
@@ -126,6 +128,7 @@ export CONDA_DEFAULT_ENV="foo";
|
|||||||
pyenv-virtualenv: prompt changing will be removed from future release. configure \`export PYENV_VIRTUALENV_DISABLE_PROMPT=1' to simulate the behavior.
|
pyenv-virtualenv: prompt changing will be removed from future release. configure \`export PYENV_VIRTUALENV_DISABLE_PROMPT=1' to simulate the behavior.
|
||||||
export _OLD_VIRTUAL_PS1="\${PS1}";
|
export _OLD_VIRTUAL_PS1="\${PS1}";
|
||||||
export PS1="(anaconda-2.3.0/envs/foo) \${PS1}";
|
export PS1="(anaconda-2.3.0/envs/foo) \${PS1}";
|
||||||
|
export CONDA_PREFIX="${TMP}/pyenv/versions/anaconda-2.3.0/envs/foo";
|
||||||
. "${PYENV_ROOT}/versions/anaconda-2.3.0/envs/foo/etc/conda/activate.d/activate.sh";
|
. "${PYENV_ROOT}/versions/anaconda-2.3.0/envs/foo/etc/conda/activate.d/activate.sh";
|
||||||
EOS
|
EOS
|
||||||
|
|
||||||
@@ -158,6 +161,7 @@ export CONDA_DEFAULT_ENV="bar";
|
|||||||
pyenv-virtualenv: prompt changing will be removed from future release. configure \`export PYENV_VIRTUALENV_DISABLE_PROMPT=1' to simulate the behavior.
|
pyenv-virtualenv: prompt changing will be removed from future release. configure \`export PYENV_VIRTUALENV_DISABLE_PROMPT=1' to simulate the behavior.
|
||||||
export _OLD_VIRTUAL_PS1="\${PS1}";
|
export _OLD_VIRTUAL_PS1="\${PS1}";
|
||||||
export PS1="(miniconda-3.9.1/envs/bar) \${PS1}";
|
export PS1="(miniconda-3.9.1/envs/bar) \${PS1}";
|
||||||
|
export CONDA_PREFIX="${TMP}/pyenv/versions/miniconda-3.9.1/envs/bar";
|
||||||
. "${PYENV_ROOT}/versions/miniconda-3.9.1/envs/bar/etc/conda/activate.d/activate.sh";
|
. "${PYENV_ROOT}/versions/miniconda-3.9.1/envs/bar/etc/conda/activate.d/activate.sh";
|
||||||
EOS
|
EOS
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ setup() {
|
|||||||
|
|
||||||
assert_success
|
assert_success
|
||||||
assert_output <<EOS
|
assert_output <<EOS
|
||||||
|
unset CONDA_PREFIX
|
||||||
unset PYENV_VIRTUAL_ENV;
|
unset PYENV_VIRTUAL_ENV;
|
||||||
unset VIRTUAL_ENV;
|
unset VIRTUAL_ENV;
|
||||||
unset CONDA_DEFAULT_ENV;
|
unset CONDA_DEFAULT_ENV;
|
||||||
@@ -97,6 +98,7 @@ EOS
|
|||||||
assert_success
|
assert_success
|
||||||
assert_output <<EOS
|
assert_output <<EOS
|
||||||
. "${PYENV_ROOT}/versions/anaconda-2.3.0/envs/foo/etc/conda/deactivate.d/deactivate.sh";
|
. "${PYENV_ROOT}/versions/anaconda-2.3.0/envs/foo/etc/conda/deactivate.d/deactivate.sh";
|
||||||
|
unset CONDA_PREFIX
|
||||||
unset PYENV_VIRTUAL_ENV;
|
unset PYENV_VIRTUAL_ENV;
|
||||||
unset VIRTUAL_ENV;
|
unset VIRTUAL_ENV;
|
||||||
unset CONDA_DEFAULT_ENV;
|
unset CONDA_DEFAULT_ENV;
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ OUT
|
|||||||
assert_success
|
assert_success
|
||||||
assert_output <<OUT
|
assert_output <<OUT
|
||||||
PYENV_VERSION=3.3.6 python -m venv ${PYENV_ROOT}/versions/3.3.6/envs/venv
|
PYENV_VERSION=3.3.6 python -m venv ${PYENV_ROOT}/versions/3.3.6/envs/venv
|
||||||
Installing pip from https://bootstrap.pypa.io/get-pip.py...
|
Installing pip from https://bootstrap.pypa.io/3.3/get-pip.py...
|
||||||
PYENV_VERSION=3.3.6/envs/venv python -s ${TMP}/pyenv/cache/get-pip.py
|
PYENV_VERSION=3.3.6/envs/venv python -s ${TMP}/pyenv/cache/get-pip.py
|
||||||
rehashed
|
rehashed
|
||||||
OUT
|
OUT
|
||||||
|
|||||||
@@ -32,11 +32,12 @@ unstub_pyenv() {
|
|||||||
|
|
||||||
run pyenv-virtualenv venv
|
run pyenv-virtualenv venv
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<OUT
|
assert_output <<OUT
|
||||||
PYENV_VERSION=3.5.1 python -m venv ${PYENV_ROOT}/versions/3.5.1/envs/venv
|
PYENV_VERSION=3.5.1 python -m venv ${PYENV_ROOT}/versions/3.5.1/envs/venv
|
||||||
rehashed
|
rehashed
|
||||||
OUT
|
OUT
|
||||||
|
assert [ -x "${PYENV_ROOT}/versions/3.5.1/envs/venv/bin/pydoc" ]
|
||||||
|
assert_success
|
||||||
|
|
||||||
unstub_pyenv
|
unstub_pyenv
|
||||||
unstub pyenv-virtualenv-prefix
|
unstub pyenv-virtualenv-prefix
|
||||||
@@ -57,11 +58,12 @@ OUT
|
|||||||
|
|
||||||
run pyenv-virtualenv venv
|
run pyenv-virtualenv venv
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<OUT
|
assert_output <<OUT
|
||||||
PYENV_VERSION=3.5.1 virtualenv ${PYENV_ROOT}/versions/3.5.1/envs/venv
|
PYENV_VERSION=3.5.1 virtualenv ${PYENV_ROOT}/versions/3.5.1/envs/venv
|
||||||
rehashed
|
rehashed
|
||||||
OUT
|
OUT
|
||||||
|
assert [ -x "${PYENV_ROOT}/versions/3.5.1/envs/venv/bin/pydoc" ]
|
||||||
|
assert_success
|
||||||
|
|
||||||
unstub_pyenv
|
unstub_pyenv
|
||||||
unstub pyenv-virtualenv-prefix
|
unstub pyenv-virtualenv-prefix
|
||||||
@@ -69,7 +71,7 @@ OUT
|
|||||||
teardown_m_venv "3.5.1"
|
teardown_m_venv "3.5.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "install virtualenv if venv is not avaialble" {
|
@test "install virtualenv if venv is not available" {
|
||||||
export PYENV_VERSION="3.2.1"
|
export PYENV_VERSION="3.2.1"
|
||||||
setup_version "3.2.1"
|
setup_version "3.2.1"
|
||||||
stub_pyenv "${PYENV_VERSION}"
|
stub_pyenv "${PYENV_VERSION}"
|
||||||
@@ -81,12 +83,13 @@ OUT
|
|||||||
|
|
||||||
run pyenv-virtualenv venv
|
run pyenv-virtualenv venv
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<OUT
|
assert_output <<OUT
|
||||||
PYENV_VERSION=3.2.1 pip install virtualenv==13.1.2
|
PYENV_VERSION=3.2.1 pip install virtualenv==13.1.2
|
||||||
PYENV_VERSION=3.2.1 virtualenv ${PYENV_ROOT}/versions/3.2.1/envs/venv
|
PYENV_VERSION=3.2.1 virtualenv ${PYENV_ROOT}/versions/3.2.1/envs/venv
|
||||||
rehashed
|
rehashed
|
||||||
OUT
|
OUT
|
||||||
|
assert [ -x "${PYENV_ROOT}/versions/3.2.1/envs/venv/bin/pydoc" ]
|
||||||
|
assert_success
|
||||||
|
|
||||||
unstub_pyenv
|
unstub_pyenv
|
||||||
unstub pyenv-virtualenv-prefix
|
unstub pyenv-virtualenv-prefix
|
||||||
@@ -112,6 +115,7 @@ PYENV_VERSION=3.5.1 pip install virtualenv
|
|||||||
PYENV_VERSION=3.5.1 virtualenv --python=${TMP}/python3 ${PYENV_ROOT}/versions/3.5.1/envs/venv
|
PYENV_VERSION=3.5.1 virtualenv --python=${TMP}/python3 ${PYENV_ROOT}/versions/3.5.1/envs/venv
|
||||||
rehashed
|
rehashed
|
||||||
OUT
|
OUT
|
||||||
|
assert [ -x "${PYENV_ROOT}/versions/3.5.1/envs/venv/bin/pydoc" ]
|
||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
unstub_pyenv
|
unstub_pyenv
|
||||||
@@ -138,6 +142,7 @@ PYENV_VERSION=3.5.1 pip install virtualenv
|
|||||||
PYENV_VERSION=3.5.1 virtualenv --python=${TMP}/python3 ${PYENV_ROOT}/versions/3.5.1/envs/venv
|
PYENV_VERSION=3.5.1 virtualenv --python=${TMP}/python3 ${PYENV_ROOT}/versions/3.5.1/envs/venv
|
||||||
rehashed
|
rehashed
|
||||||
OUT
|
OUT
|
||||||
|
assert [ -x "${PYENV_ROOT}/versions/3.5.1/envs/venv/bin/pydoc" ]
|
||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
unstub_pyenv
|
unstub_pyenv
|
||||||
@@ -158,12 +163,13 @@ OUT
|
|||||||
|
|
||||||
PIP_REQUIRE_VENV="true" run pyenv-virtualenv venv
|
PIP_REQUIRE_VENV="true" run pyenv-virtualenv venv
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<OUT
|
assert_output <<OUT
|
||||||
PIP_REQUIRE_VENV= PYENV_VERSION=3.2.1 pip install virtualenv==13.1.2
|
PIP_REQUIRE_VENV= PYENV_VERSION=3.2.1 pip install virtualenv==13.1.2
|
||||||
PIP_REQUIRE_VENV= PYENV_VERSION=3.2.1 virtualenv ${PYENV_ROOT}/versions/3.2.1/envs/venv
|
PIP_REQUIRE_VENV= PYENV_VERSION=3.2.1 virtualenv ${PYENV_ROOT}/versions/3.2.1/envs/venv
|
||||||
rehashed
|
rehashed
|
||||||
OUT
|
OUT
|
||||||
|
assert [ -x "${PYENV_ROOT}/versions/3.2.1/envs/venv/bin/pydoc" ]
|
||||||
|
assert_success
|
||||||
|
|
||||||
unstub_pyenv
|
unstub_pyenv
|
||||||
unstub pyenv-virtualenv-prefix
|
unstub pyenv-virtualenv-prefix
|
||||||
|
|||||||
@@ -34,12 +34,13 @@ unstub_pyenv() {
|
|||||||
|
|
||||||
run pyenv-virtualenv "2.7.11" "venv"
|
run pyenv-virtualenv "2.7.11" "venv"
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<OUT
|
assert_output <<OUT
|
||||||
PYENV_VERSION=2.7.11 virtualenv ${PYENV_ROOT}/versions/2.7.11/envs/venv
|
PYENV_VERSION=2.7.11 virtualenv ${PYENV_ROOT}/versions/2.7.11/envs/venv
|
||||||
Installing pip from https://bootstrap.pypa.io/get-pip.py...
|
Installing pip from https://bootstrap.pypa.io/get-pip.py...
|
||||||
rehashed
|
rehashed
|
||||||
OUT
|
OUT
|
||||||
|
assert [ -x "${PYENV_ROOT}/versions/2.7.11/envs/venv/bin/pydoc" ]
|
||||||
|
assert_success
|
||||||
|
|
||||||
unstub_pyenv
|
unstub_pyenv
|
||||||
unstub pyenv-virtualenv-prefix
|
unstub pyenv-virtualenv-prefix
|
||||||
@@ -60,12 +61,13 @@ OUT
|
|||||||
|
|
||||||
run pyenv-virtualenv venv
|
run pyenv-virtualenv venv
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<OUT
|
assert_output <<OUT
|
||||||
PYENV_VERSION=2.7.11 virtualenv ${PYENV_ROOT}/versions/2.7.11/envs/venv
|
PYENV_VERSION=2.7.11 virtualenv ${PYENV_ROOT}/versions/2.7.11/envs/venv
|
||||||
Installing pip from https://bootstrap.pypa.io/get-pip.py...
|
Installing pip from https://bootstrap.pypa.io/get-pip.py...
|
||||||
rehashed
|
rehashed
|
||||||
OUT
|
OUT
|
||||||
|
assert [ -x "${PYENV_ROOT}/versions/2.7.11/envs/venv/bin/pydoc" ]
|
||||||
|
assert_success
|
||||||
|
|
||||||
unstub_pyenv
|
unstub_pyenv
|
||||||
unstub pyenv-version-name
|
unstub pyenv-version-name
|
||||||
@@ -92,6 +94,7 @@ PYENV_VERSION=2.7.11 virtualenv --verbose --python=${TMP}/python ${PYENV_ROOT}/v
|
|||||||
Installing pip from https://bootstrap.pypa.io/get-pip.py...
|
Installing pip from https://bootstrap.pypa.io/get-pip.py...
|
||||||
rehashed
|
rehashed
|
||||||
OUT
|
OUT
|
||||||
|
assert [ -x "${PYENV_ROOT}/versions/2.7.11/envs/venv/bin/pydoc" ]
|
||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
unstub_pyenv
|
unstub_pyenv
|
||||||
@@ -119,6 +122,7 @@ PYENV_VERSION=2.7.11 virtualenv --verbose --python=${TMP}/python ${PYENV_ROOT}/v
|
|||||||
Installing pip from https://bootstrap.pypa.io/get-pip.py...
|
Installing pip from https://bootstrap.pypa.io/get-pip.py...
|
||||||
rehashed
|
rehashed
|
||||||
OUT
|
OUT
|
||||||
|
assert [ -x "${PYENV_ROOT}/versions/2.7.11/envs/venv/bin/pydoc" ]
|
||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
unstub_pyenv
|
unstub_pyenv
|
||||||
@@ -176,12 +180,13 @@ OUT
|
|||||||
|
|
||||||
run pyenv-virtualenv "2.7.11" "2.7.11/envs/foo"
|
run pyenv-virtualenv "2.7.11" "2.7.11/envs/foo"
|
||||||
|
|
||||||
assert_success
|
|
||||||
assert_output <<OUT
|
assert_output <<OUT
|
||||||
PYENV_VERSION=2.7.11 virtualenv ${PYENV_ROOT}/versions/2.7.11/envs/foo
|
PYENV_VERSION=2.7.11 virtualenv ${PYENV_ROOT}/versions/2.7.11/envs/foo
|
||||||
Installing pip from https://bootstrap.pypa.io/get-pip.py...
|
Installing pip from https://bootstrap.pypa.io/get-pip.py...
|
||||||
rehashed
|
rehashed
|
||||||
OUT
|
OUT
|
||||||
|
assert [ -x "${PYENV_ROOT}/versions/2.7.11/envs/foo/bin/pydoc" ]
|
||||||
|
assert_success
|
||||||
|
|
||||||
unstub_pyenv
|
unstub_pyenv
|
||||||
unstub pyenv-virtualenv-prefix
|
unstub pyenv-virtualenv-prefix
|
||||||
|
|||||||
Reference in New Issue
Block a user