mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-14 20:39:55 -05:00
Import recent changes from rbenv 4d72eefffc
This commit is contained in:
parent
efe461d2b4
commit
f48a5b11d7
3 changed files with 3 additions and 9 deletions
|
@ -1,4 +1,5 @@
|
||||||
install: git clone https://github.com/sstephenson/bats.git
|
sudo: false
|
||||||
|
install: git clone --depth 1 https://github.com/sstephenson/bats.git
|
||||||
script: make test
|
script: make test
|
||||||
language: c
|
language: c
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -25,9 +25,6 @@ OLDIFS="$IFS"
|
||||||
if version_exists "$version" || [ "$version" = "system" ]; then
|
if version_exists "$version" || [ "$version" = "system" ]; then
|
||||||
versions=("${versions[@]}" "${version}")
|
versions=("${versions[@]}" "${version}")
|
||||||
elif version_exists "${version#python-}"; then
|
elif version_exists "${version#python-}"; then
|
||||||
{ echo "warning: ignoring extraneous \`python-' prefix in version \`${version}'"
|
|
||||||
echo " (set by $(pyenv-version-origin))"
|
|
||||||
} >&2
|
|
||||||
versions=("${versions[@]}" "${version#python-}")
|
versions=("${versions[@]}" "${version#python-}")
|
||||||
else
|
else
|
||||||
echo "pyenv: version \`$version' is not installed" >&2
|
echo "pyenv: version \`$version' is not installed" >&2
|
||||||
|
|
|
@ -57,9 +57,5 @@ setup() {
|
||||||
cat > ".python-version" <<<"python-2.7.6"
|
cat > ".python-version" <<<"python-2.7.6"
|
||||||
run pyenv-version-name
|
run pyenv-version-name
|
||||||
assert_success
|
assert_success
|
||||||
assert_output <<OUT
|
assert_output "2.7.6"
|
||||||
warning: ignoring extraneous \`python-' prefix in version \`python-2.7.6'
|
|
||||||
(set by ${PWD}/.python-version)
|
|
||||||
2.7.6
|
|
||||||
OUT
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue