e2b6047514
* Add symlinks sanity test. * Replace legacy test symlinks with actual content. * Remove dir symlink from template_jinja2_latest. * Update import test to use generated library dir. * Fix copy test symlink setup.
24 lines
727 B
Bash
Executable file
24 lines
727 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# We don't set -u here, due to pypa/virtualenv#150
|
|
set -ex
|
|
|
|
MYTMPDIR=$(mktemp -d 2>/dev/null || mktemp -d -t 'mytmpdir')
|
|
|
|
trap 'rm -rf "${MYTMPDIR}"' EXIT
|
|
|
|
# This is needed for the ubuntu1604py3 tests
|
|
# Ubuntu patches virtualenv to make the default python2
|
|
# but for the python3 tests we need virtualenv to use python3
|
|
PYTHON=$("python${ANSIBLE_TEST_PYTHON_VERSION:-}" -c "import sys; print(sys.executable)")
|
|
|
|
virtualenv --system-site-packages --python "${PYTHON}" "${MYTMPDIR}/jinja2"
|
|
|
|
source "${MYTMPDIR}/jinja2/bin/activate"
|
|
|
|
pip install -U jinja2
|
|
|
|
ANSIBLE_ROLES_PATH="$(dirname "$(pwd)")"
|
|
export ANSIBLE_ROLES_PATH
|
|
|
|
ansible-playbook -i ../../inventory main.yml -e @../../integration_config.yml -v "$@"
|