commit | 44370396e885c123edec5c8ca223afe476f245a1 | [log] [tgz] |
---|---|---|
author | Zack Williams <zdw@opennetworking.org> | Tue Feb 05 17:24:40 2019 +0000 |
committer | Gerrit Code Review <gerrit@opencord.org> | Tue Feb 05 17:24:40 2019 +0000 |
tree | 6bc0b293214c9f70358a53c47e89decadcda857b | |
parent | be13fe777695ea24a5632ae93e0d6f9fb232e83d [diff] | |
parent | 2cd5432e15c0b237dc93da5f701a40be43d6507f [diff] |
Merge "[SEBA-459]"
diff --git a/jjb/shell/ansiblelint.sh b/jjb/shell/ansiblelint.sh index f97d186..930c09f 100755 --- a/jjb/shell/ansiblelint.sh +++ b/jjb/shell/ansiblelint.sh
@@ -30,7 +30,9 @@ while IFS= read -r -d '' yf do echo "==> CHECKING: ${yf}" - ansible-lint -p "${yf}" + # Ignore line length limit (E204) as it can't (as of v4.0.1) be + # overridden with the skip_ansible_lint tag + ansible-lint -x 204 -p "${yf}" rc=$? if [[ $rc != 0 ]]; then echo "==> LINTING FAIL: ${yf}"