blob: 014aa9d4d2535daabcf5c2c92f5f9aabceae4b10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
- name: Collect all httpapi test cases
ansible.builtin.find:
paths: "{{ role_path }}/tests/httpapi"
patterns: "*.yaml"
excludes: "_*.yaml"
register: test_cases
delegate_to: localhost
- name: Set test_items
ansible.builtin.set_fact:
test_items: "{{ test_cases.files | map(attribute='path') | list | sort }}"
- name: Run test case (connection=httpapi)
ansible.builtin.include_tasks: "{{ test_case_to_run }}"
loop: "{{ test_items }}"
loop_control:
loop_var: test_case_to_run
|