2018-12-04 22:47:28 +01:00
|
|
|
# This file is part of Ansible
|
|
|
|
|
|
|
|
# Copyright: (c) 2018, Wojciech Sciesinski <wojciech[at]sciesinski[dot]net>
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
|
|
|
|
---
|
2019-02-12 21:51:03 +01:00
|
|
|
- name: unregister the repository
|
2019-03-10 20:43:21 +01:00
|
|
|
win_shell: Unregister-PSRepository {{ repository_name | quote }} -ErrorAction Ignore
|
|
|
|
|
|
|
|
- block:
|
|
|
|
- name: run all tests
|
|
|
|
include_tasks: tests.yml
|
2018-12-04 22:47:28 +01:00
|
|
|
|
2019-03-10 20:43:21 +01:00
|
|
|
always:
|
|
|
|
- name: ensure test repo is unregistered
|
|
|
|
win_shell: Unregister-PSRepository {{ repository_name | quote }} -ErrorAction Ignore
|