From 0acd3425d73eef4faecf9a52fac6e200d3c3b81c Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Mon, 16 Sep 2019 17:53:35 +0200 Subject: [PATCH] Ignore ansible-lint errors Ignore some ansible-lint errors so that jobs pass again. Change-Id: I4f0ed9268a5778ba7cf006f7346379afd6a27052 --- tox.ini | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 76dd36f..a6bd091 100644 --- a/tox.ini +++ b/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 \