diff options
author | Matt Clay <matt@mystile.com> | 2019-08-15 01:33:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-15 01:33:45 +0200 |
commit | 0c74ee4352fc5702de25d8bab8a592e0e044f0bc (patch) | |
tree | 527497fd0fe82c4e22ce859f367b79bd1fe1f820 /test/integration/targets/template/runme.sh | |
parent | Meraki - Initial unit tests (#55251) (diff) | |
download | ansible-0c74ee4352fc5702de25d8bab8a592e0e044f0bc.tar.xz ansible-0c74ee4352fc5702de25d8bab8a592e0e044f0bc.zip |
Clean up various integration tests. (#60613)
* Fix var_blending test temp dir usage.
* Fix filters integration test:
- Fix use of `output_dir`.
- Use `localhost` instead of `testhost` since we're only testing filters.
- Fix `fileglob` test to actually test a directory that exists.
* Fix lookups integration test:
- Fix use of `output_dir`.
- Use `localhost` instead of `testhost` since we're only testing lookups.
* Fix ansible-runner test temp dir usage.
* Fix template and template_jinja2_latest test.
Use the `OUTPUT_DIR` env var to get the output directory for the tests.
* Fix Python version compat in filters test.
* Skip filters test on Python 2.6.
Diffstat (limited to 'test/integration/targets/template/runme.sh')
-rwxr-xr-x | test/integration/targets/template/runme.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/targets/template/runme.sh b/test/integration/targets/template/runme.sh index 352b41a3f4..abdd62f28b 100755 --- a/test/integration/targets/template/runme.sh +++ b/test/integration/targets/template/runme.sh @@ -2,16 +2,16 @@ set -eux -ANSIBLE_ROLES_PATH=../ ansible-playbook template.yml -i ../../inventory -e @../../integration_config.yml -v "$@" +ANSIBLE_ROLES_PATH=../ ansible-playbook template.yml -i ../../inventory -v "$@" # Test for #35571 ansible testhost -i testhost, -m debug -a 'msg={{ hostvars["localhost"] }}' -e "vars1={{ undef }}" -e "vars2={{ vars1 }}" # Test for https://github.com/ansible/ansible/issues/27262 -ansible-playbook ansible_managed.yml -c ansible_managed.cfg -i ../../inventory -e @../../integration_config.yml -v "$@" +ansible-playbook ansible_managed.yml -c ansible_managed.cfg -i ../../inventory -v "$@" # Test for #42585 -ANSIBLE_ROLES_PATH=../ ansible-playbook custom_template.yml -i ../../inventory -e @../../integration_config.yml -v "$@" +ANSIBLE_ROLES_PATH=../ ansible-playbook custom_template.yml -i ../../inventory -v "$@" # Test for several corner cases #57188 |