f735fd672a
* Copy in incidental windows tests. * Update incidental test aliases. * Add support plugins. * Update target references. * Update sanity ignores. * Update integration-aliases test. * Add to CI.
17 lines
394 B
YAML
17 lines
394 B
YAML
---
|
|
- name: take a copy of the original hosts file
|
|
win_copy:
|
|
src: C:\Windows\System32\drivers\etc\hosts
|
|
dest: '{{ remote_tmp_dir }}\hosts'
|
|
remote_src: yes
|
|
|
|
- block:
|
|
- name: run tests
|
|
include_tasks: tests.yml
|
|
|
|
always:
|
|
- name: restore hosts file
|
|
win_copy:
|
|
src: '{{ remote_tmp_dir }}\hosts'
|
|
dest: C:\Windows\System32\drivers\etc\hosts
|
|
remote_src: yes
|