|
---
|
|
- name: Recursively find all test files
|
|
ansible.builtin.find:
|
|
file_type: file
|
|
paths: "{{ role_path }}/tests"
|
|
recurse: true
|
|
delegate_to: localhost
|
|
register: found
|
|
|
|
- name: Include tasks
|
|
ansible.builtin.include_tasks: "{{ item.path }}"
|
|
loop: "{{ found.files }}"
|