blob: 53b062c0b0b380b7043b94143f0af8ec281a467b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
---
- name: remove test tasks before test
include_tasks: clean.yml
- block:
- name: Test failure scenarios
include_tasks: failures.yml
- name: Test normal scenarios
include_tasks: tests.yml
- include_tasks: clean.yml
- name: Test principals
include_tasks: principals.yml
- include_tasks: clean.yml
- name: Test triggers
include_tasks: triggers.yml
always:
- name: remove test tasks after test
include_tasks: clean.yml
|