mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Import changes in rbenv/ruby-build#979
This commit is contained in:
parent
3a1379cb34
commit
66c8ca6cff
6 changed files with 10 additions and 8 deletions
|
@ -5,6 +5,10 @@ export PYTHON_BUILD_SKIP_MIRROR=1
|
||||||
export PYTHON_BUILD_CACHE_PATH=
|
export PYTHON_BUILD_CACHE_PATH=
|
||||||
export PYTHON_BUILD_CURL_OPTS=
|
export PYTHON_BUILD_CURL_OPTS=
|
||||||
|
|
||||||
|
setup() {
|
||||||
|
ensure_not_found_in_path aria2c
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@test "package URL without checksum" {
|
@test "package URL without checksum" {
|
||||||
stub curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3"
|
stub curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3"
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
load test_helper
|
load test_helper
|
||||||
|
|
||||||
setup() {
|
setup() {
|
||||||
ensure_not_found_in_path aria2c
|
|
||||||
export PYENV_ROOT="${TMP}/pyenv"
|
export PYENV_ROOT="${TMP}/pyenv"
|
||||||
export HOOK_PATH="${TMP}/i has hooks"
|
export HOOK_PATH="${TMP}/i has hooks"
|
||||||
mkdir -p "$HOOK_PATH"
|
mkdir -p "$HOOK_PATH"
|
||||||
|
|
|
@ -6,6 +6,10 @@ export PYTHON_BUILD_CACHE_PATH=
|
||||||
export PYTHON_BUILD_MIRROR_URL=http://mirror.example.com
|
export PYTHON_BUILD_MIRROR_URL=http://mirror.example.com
|
||||||
export PYTHON_BUILD_CURL_OPTS=
|
export PYTHON_BUILD_CURL_OPTS=
|
||||||
|
|
||||||
|
setup() {
|
||||||
|
ensure_not_found_in_path aria2c
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@test "package URL without checksum bypasses mirror" {
|
@test "package URL without checksum bypasses mirror" {
|
||||||
stub shasum true
|
stub shasum true
|
||||||
|
|
|
@ -4,7 +4,6 @@ load test_helper
|
||||||
export PYENV_ROOT="${TMP}/pyenv"
|
export PYENV_ROOT="${TMP}/pyenv"
|
||||||
|
|
||||||
setup() {
|
setup() {
|
||||||
ensure_not_found_in_path aria2c
|
|
||||||
stub pyenv-hooks 'install : true'
|
stub pyenv-hooks 'install : true'
|
||||||
stub pyenv-rehash 'true'
|
stub pyenv-rehash 'true'
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,10 +38,6 @@ ensure_not_found_in_path() {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
setup() {
|
|
||||||
ensure_not_found_in_path aria2c
|
|
||||||
}
|
|
||||||
|
|
||||||
teardown() {
|
teardown() {
|
||||||
rm -fr "${TMP:?}"/*
|
rm -fr "${TMP:?}"/*
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue