2020-10-20 19:14:23 +00:00
|
|
|
- name: Recursively find all test files
|
|
|
|
find:
|
|
|
|
file_type: file
|
|
|
|
paths: "{{ role_path }}/tasks/include"
|
|
|
|
recurse: yes
|
|
|
|
use_regex: yes
|
|
|
|
patterns:
|
|
|
|
- '^(?!_).+$'
|
|
|
|
register: found
|
|
|
|
|
|
|
|
- include: "{{ item.path }}"
|
|
|
|
loop: "{{ found.files }}"
|