2020-10-28 20:39:20 +00:00
|
|
|
---
|
2020-10-23 11:48:16 +00:00
|
|
|
- name: Recursively find all test files
|
2022-11-29 13:58:12 +00:00
|
|
|
ansible.builtin.find:
|
2020-10-23 11:48:16 +00:00
|
|
|
file_type: file
|
2021-10-27 18:12:24 +00:00
|
|
|
paths: "{{ role_path }}/tasks"
|
|
|
|
recurse: false
|
2020-10-28 20:39:20 +00:00
|
|
|
use_regex: true
|
2020-10-23 11:48:16 +00:00
|
|
|
patterns:
|
2022-05-26 14:02:52 +00:00
|
|
|
- "^(?!_|main).+$"
|
2021-10-27 18:12:24 +00:00
|
|
|
delegate_to: localhost
|
2020-10-23 11:48:16 +00:00
|
|
|
register: found
|
|
|
|
|
2022-12-28 07:07:35 +00:00
|
|
|
- name: Include tasks
|
|
|
|
ansible.builtin.include_tasks: "{{ item.path }}"
|
2020-10-23 11:48:16 +00:00
|
|
|
loop: "{{ found.files }}"
|