0c74ee4352
* 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.
14 lines
396 B
YAML
14 lines
396 B
YAML
---
|
|
- hosts: testhost
|
|
gather_facts: False
|
|
tasks:
|
|
- set_fact:
|
|
output_dir: "{{ lookup('env', 'OUTPUT_DIR') }}"
|
|
- file:
|
|
path: '{{ output_dir }}/café.txt'
|
|
state: 'absent'
|
|
# Smoketest that ansible_managed with non-ascii chars works:
|
|
# https://github.com/ansible/ansible/issues/27262
|
|
- template:
|
|
src: 'templates/café.j2'
|
|
dest: '{{ output_dir }}/café.txt'
|