850a77f639
Also pin virtualenv to 16.7.10 for older Mac OS X systems. This was the version being installed anway with the previous constraint (<20). On systems with Python 3, now prefer venv over virtualenv. Test to see if venv is functional since some systems have a non-functional venv installation (such as Debian).
14 lines
669 B
Bash
14 lines
669 B
Bash
#!/usr/bin/env bash
|
|
# Create and activate a fresh virtual environment with `source virtualenv.sh`.
|
|
|
|
rm -rf "${OUTPUT_DIR}/venv"
|
|
|
|
# Try to use 'venv' if it is available, then fallback to 'virtualenv' since some systems provide 'venv' although it is non-functional.
|
|
if [[ "${ANSIBLE_TEST_PYTHON_VERSION}" =~ ^2\. ]] || ! "${ANSIBLE_TEST_PYTHON_INTERPRETER}" -m venv --system-site-packages "${OUTPUT_DIR}/venv" > /dev/null 2>&1; then
|
|
rm -rf "${OUTPUT_DIR}/venv"
|
|
"${ANSIBLE_TEST_PYTHON_INTERPRETER}" -m virtualenv --system-site-packages --python "${ANSIBLE_TEST_PYTHON_INTERPRETER}" "${OUTPUT_DIR}/venv"
|
|
fi
|
|
|
|
set +ux
|
|
source "${OUTPUT_DIR}/venv/bin/activate"
|
|
set -ux
|