- name: Gather facts setup: - name: Remove potentially leftover test group win_group: &wg_absent name: WinGroupMemberTest state: absent - name: Add new test group win_group: name: WinGroupMemberTest state: present - name: Run tests for win_group_member block: - name: Test in normal mode include_tasks: tests.yml vars: win_local_group: WinGroupMemberTest in_check_mode: no - name: Test in check-mode include_tasks: tests.yml vars: win_local_group: WinGroupMemberTest in_check_mode: yes check_mode: yes - name: Remove test group win_group: *wg_absent