blob: c59b41b318bb101b5a7117ef767eab309f9a41a6 (
plain)
1
2
3
4
5
6
7
8
9
|
---
- name: Fixture for test coverage
hosts: localhost
gather_facts: false
tasks:
- name: Some include with invalid syntax
ansible.builtin.include_tasks: "file="
- name: Some include with invalid syntax
ansible.builtin.include_tasks: other=tasks/included-with-lint.yml
|