15 lines
286 B
YAML
15 lines
286 B
YAML
|
---
|
||
|
- name: Recursively find all test files
|
||
|
find:
|
||
|
file_type: file
|
||
|
paths: "{{ role_path }}/tasks"
|
||
|
recurse: false
|
||
|
use_regex: true
|
||
|
patterns:
|
||
|
- '^(?!_|main).+$'
|
||
|
delegate_to: localhost
|
||
|
register: found
|
||
|
|
||
|
- include: "{{ item.path }}"
|
||
|
loop: "{{ found.files }}"
|