mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 23:21:22 -07:00
Improve jinja2 test coverage. (#20533)
* Run `template` test on latest jinja2 version. * Update jinja2 install for groupby_filter. * Clean test output dir for each test.
This commit is contained in:
parent
d87ee022bb
commit
61e6e7868c
8 changed files with 52 additions and 21 deletions
1
test/integration/targets/template_jinja2_latest/aliases
Symbolic link
1
test/integration/targets/template_jinja2_latest/aliases
Symbolic link
|
@ -0,0 +1 @@
|
|||
../template/aliases
|
4
test/integration/targets/template_jinja2_latest/main.yml
Normal file
4
test/integration/targets/template_jinja2_latest/main.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
- hosts: testhost
|
||||
gather_facts: True
|
||||
roles:
|
||||
- { role: template }
|
1
test/integration/targets/template_jinja2_latest/roles/template
Symbolic link
1
test/integration/targets/template_jinja2_latest/roles/template
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../template
|
21
test/integration/targets/template_jinja2_latest/runme.sh
Executable file
21
test/integration/targets/template_jinja2_latest/runme.sh
Executable file
|
@ -0,0 +1,21 @@
|
|||
#!/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-playbook -i ../../inventory main.yml -e @../../integration_config.yml -v "$@"
|
Loading…
Add table
Add a link
Reference in a new issue