mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
320 B
YAML
19 lines
320 B
YAML
6 years ago
|
---
|
||
|
- name: ensure we start with a clean dir
|
||
|
win_file:
|
||
|
path: '{{ test_acl_path }}'
|
||
|
state: '{{ item }}'
|
||
|
with_items:
|
||
|
- absent
|
||
|
- directory
|
||
|
|
||
|
- block:
|
||
|
- name: run tests
|
||
|
include_tasks: tests.yml
|
||
|
|
||
|
always:
|
||
|
- name: clenaup testing dir
|
||
|
win_file:
|
||
|
path: '{{ test_acl_path }}'
|
||
|
state: absent
|