verify.yml does not needs to pass yamllint.

This commit is contained in:
Robert de Bock 2020-02-07 16:32:19 +01:00
parent fef23cdb18
commit f67e1e0801
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{{ ansible_managed | comment }}
{% if versionymlstat.stat.exists or exceptionymlstat.stat.exists or preferencesymlstat.stat.exists %}
{% if versionymlstat.stat.exists or exceptionymlstat.stat.exists or preferencesymlstat.stat.exists or verify.stat.exists %}
exclude_paths:
{% if versionymlstat.stat.exists %}
- ./meta/version.yml
@ -10,4 +10,7 @@ exclude_paths:
{% if preferencesymlstat.stat.exists %}
- ./meta/preferences.yml
{% endif %}
{% if verify.stat.exists %}
- ./molecule/default/verify.yml
{% endif %}
{% endif %}