Some checks are pending
macos_build / macos_build (3.10) (push) Waiting to run
macos_build / macos_build (3.11) (push) Waiting to run
macos_build / macos_build (3.12) (push) Waiting to run
macos_build / macos_build (3.13) (push) Waiting to run
macos_build / macos_build (3.14) (push) Waiting to run
pyenv_tests / pyenv_tests (macos-14) (push) Waiting to run
pyenv_tests / pyenv_tests (macos-15) (push) Waiting to run
pyenv_tests / pyenv_tests (macos-15-intel) (push) Waiting to run
pyenv_tests / pyenv_tests (macos-26) (push) Waiting to run
pyenv_tests / pyenv_tests (ubuntu-22.04) (push) Waiting to run
pyenv_tests / pyenv_tests (ubuntu-24.04) (push) Waiting to run
ubuntu_build / ubuntu_build (3.10) (push) Waiting to run
ubuntu_build / ubuntu_build (3.11) (push) Waiting to run
ubuntu_build / ubuntu_build (3.12) (push) Waiting to run
ubuntu_build / ubuntu_build (3.13) (push) Waiting to run
ubuntu_build / ubuntu_build (3.14) (push) Waiting to run
61 lines
1.5 KiB
Bash
Executable File
61 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bats
|
|
|
|
load test_helper
|
|
|
|
copy_src_pyenvd() {
|
|
mkdir -p "${PYENV_ROOT}"
|
|
cp -r "${BATS_TEST_DIRNAME}/../pyenv.d" "${PYENV_ROOT}"
|
|
}
|
|
|
|
@test "pip-rehash triggered when using 'pip'" {
|
|
export PYENV_VERSION="3.7.14"
|
|
create_alt_executable "example"
|
|
create_alt_executable "pip"
|
|
copy_src_pyenvd
|
|
run command -v example 2> /dev/null
|
|
assert_failure
|
|
run pyenv-exec pip install example
|
|
assert_success
|
|
run command -v example 2> /dev/null
|
|
assert_success
|
|
}
|
|
|
|
@test "pip-rehash triggered when using 'pip3'" {
|
|
export PYENV_VERSION="3.7.14"
|
|
create_alt_executable "example"
|
|
create_alt_executable "pip3"
|
|
copy_src_pyenvd
|
|
run command -v example 2> /dev/null
|
|
assert_failure
|
|
run pyenv-exec pip3 install example
|
|
assert_success
|
|
run command -v example 2> /dev/null
|
|
assert_success
|
|
}
|
|
|
|
@test "pip-rehash triggered when using 'pip3.x'" {
|
|
export PYENV_VERSION="3.7.14"
|
|
create_alt_executable "example"
|
|
create_alt_executable "pip3.7"
|
|
copy_src_pyenvd
|
|
run command -v example 2> /dev/null
|
|
assert_failure
|
|
run pyenv-exec pip3.7 install example
|
|
assert_success
|
|
run command -v example 2> /dev/null
|
|
assert_success
|
|
}
|
|
|
|
@test "pip-rehash triggered when using 'python -m pip install'" {
|
|
export PYENV_VERSION="3.7.14"
|
|
create_alt_executable "example"
|
|
create_alt_executable "python"
|
|
copy_src_pyenvd
|
|
run command -v example 2> /dev/null
|
|
assert_failure
|
|
run pyenv-exec python -m pip install example
|
|
assert_success
|
|
run command -v example 2> /dev/null
|
|
assert_success
|
|
}
|