- Docs »
- win_pester - Run Pester tests on Windows hosts
-
You are reading an unmaintained version of the Ansible documentation. Unmaintained Ansible versions can contain unfixed security vulnerabilities (CVE). Please upgrade to a maintained version. See the latest Ansible documentation.
win_pester - Run Pester tests on Windows hosts
- Run Pester tests on Windows hosts.
- Test files have to be available on the remote host.
The below requirements are needed on the host that executes this module.
Parameter |
Choices/Defaults |
Comments |
path
required |
|
Path to a pester test file or a folder where tests can be found.
If the path is a folder, the module will consider all ps1 files as Pester tests.
|
version
|
|
Minimum version of the pester module that has to be available on the remote host.
|
- name: Get facts
setup:
- name: Add Pester module
action:
module_name: "{{ 'win_psmodule' if ansible_powershell_version >= 5 else 'win_chocolatey' }}"
name: Pester
state: present
- name: Run the pester test provided in the path parameter.
win_pester:
path: C:\Pester
# Run pesters tests files that are present in the specified folder
# ensure that the pester module version available is greater or equal to the version parameter.
- name: Run the pester test present in a folder and check the Pester module version.
win_pester:
path: C:\Pester\test01.test.ps1
version: 4.1.0
Common return values are documented here, the following are the fields unique to this module:
Key |
Returned |
Description |
output
list
|
success |
Results of the Pester tests.
|
pester_version
string
|
always |
Version of the pester module found on the remote host.
Sample:
4.3.1
|
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
This module is flagged as community which means that it is maintained by the Ansible Community. See Module Maintenance & Support for more info.
For a list of other modules that are also maintained by the Ansible Community, see here.
- Erwan Quelin (@erwanquelin)
Hint
If you notice any issues in this documentation you can edit this document to improve it.