From 642874f1c0807cc4a38a2f209b1e82181278f5c6 Mon Sep 17 00:00:00 2001 From: Paul Belanger <pabelanger@redhat.com> Date: Thu, 26 Apr 2018 14:51:09 -0400 Subject: [PATCH] Limit linters to current working directory Change-Id: I3087ab08b598050bf2b66a6de805929d698063b9 Signed-off-by: Paul Belanger <pabelanger@redhat.com> --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index be76c31..03ba7dc 100644 --- a/tox.ini +++ b/tox.ini @@ -29,8 +29,8 @@ commands = # PEP8 Lint Check flake8 # Ansible Lint Check - bash -c "find . -type f -regex '.*.y[a]?ml' -print0 | xargs -t -n1 -0 \ - ansible-lint" + bash -c "find . -not -path '*/\.*' -type f -regex '.*.y[a]?ml' -print0 | \ + xargs -t -n1 -0 ansible-lint" # Ansible Syntax Check bash -c "find tests -type f -regex '.*.y[a]?ml' -print | xargs -t -n1 \ ansible-playbook --syntax-check -i tests/inventory \