1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-16 23:33:45 -05:00

Search for plugins in PYENV_DIR and PYENV_ROOT (#1697)

This commit is contained in:
cornfeedhobo
2020-10-01 20:33:34 -05:00
committed by GitHub
parent 71d2e4549e
commit cadebd8e65
2 changed files with 6 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ load test_helper
@test "adds its own libexec to PATH" {
run pyenv echo "PATH"
assert_success "${BATS_TEST_DIRNAME%/*}/libexec:$PATH"
assert_success "${BATS_TEST_DIRNAME%/*}/libexec:${BATS_TEST_DIRNAME%/*}/plugins/python-build/bin:$PATH"
}
@test "adds plugin bin dirs to PATH" {
@@ -59,6 +59,7 @@ load test_helper
assert_line 0 "${BATS_TEST_DIRNAME%/*}/libexec"
assert_line 1 "${PYENV_ROOT}/plugins/python-build/bin"
assert_line 2 "${PYENV_ROOT}/plugins/pyenv-each/bin"
assert_line 3 "${BATS_TEST_DIRNAME%/*}/plugins/python-build/bin"
}
@test "PYENV_HOOK_PATH preserves value from environment" {