Ignore ansible-lint errors
Ignore some ansible-lint errors so that jobs pass again. Change-Id: I4f0ed9268a5778ba7cf006f7346379afd6a27052
This commit is contained in:
parent
60e701bb38
commit
0acd3425d7
8
tox.ini
8
tox.ini
@ -38,8 +38,14 @@ commands =
|
||||
# PEP8 Lint Check
|
||||
flake8
|
||||
# Ansible Lint Check
|
||||
#
|
||||
# 204: Lines < 160
|
||||
# Things like keys, script lines, etc exceed this. We have good
|
||||
# taste and only use long lines where appropriate.
|
||||
#
|
||||
# 206: {{var}} should have spaces {{ var }}
|
||||
bash -c "find . -type f -regex '.*.y[a]?ml' ! -path './.tox/*' -print0 | xargs -t -n1 -0 \
|
||||
ansible-lint"
|
||||
ansible-lint -x204 -x 206"
|
||||
# Ansible Syntax Check
|
||||
bash -c "find tests -type f -regex '.*.y[a]?ml' ! -name 'resources.yml' \
|
||||
-print | xargs -t -n1 \
|
||||
|
Loading…
Reference in New Issue
Block a user