704dae2cda
* Fix lookup_passwordstore test skipping. Skip all of RHEL instead of specific versions. Skip all of CentOS < 7 instead of specific versions. This makes the test more robust when testing newer versions. Tests could be executed on RHEL if EPEL was installed during the test.
6 lines
242 B
YAML
6 lines
242 B
YAML
- block:
|
|
- include: "package.yml"
|
|
- include: "tests.yml"
|
|
when:
|
|
- not (ansible_distribution == 'RedHat') # requires EPEL
|
|
- not (ansible_distribution == 'CentOS' and ansible_distribution_version is version_compare('7', '<'))
|