From fd810edbd0da8f4a2c561e9212be27539ce4fb4f Mon Sep 17 00:00:00 2001 From: Riccardo Pittau Date: Mon, 23 Nov 2020 11:27:55 +0100 Subject: [PATCH] Increase verbosity of ansible lint command This should help troubleshooting issues with alint tox context. Change-Id: Ieef9aae0e68474039f1d2bf7d9ecc8a1e0ad2e80 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 4871be0..e4be523 100644 --- a/tox.ini +++ b/tox.ini @@ -66,7 +66,7 @@ commands = setenv = ANSIBLE_LIBRARY = {toxinidir}/ansible/action_plugins/ # Exclude roles downloaded from Galaxy (in the form 'author.role') from # linting. -commands = bash -c "ansible-lint \ +commands = bash -c "ansible-lint -vvv \ $(find {toxinidir}/ansible -path '*.yml' \ -not -path '{toxinidir}/ansible/roles/*.*/*' -print)"