From c8939ce518ff074a9132dc3dd3d4824d8badc37a Mon Sep 17 00:00:00 2001 From: Kevin Coakley Date: Thu, 14 Dec 2017 19:30:37 -0800 Subject: [PATCH] Ignore [ANSIBLE0016] Tasks that run when changed should likely be handlers --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3a166ba..1d1a801 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,8 @@ install: script: # ansible-lint checks playbooks for practices and behaviour that could potentially be improved # Ignore [ANSIBLE0006] yum used in place of yum module - - ansible-lint -x ANSIBLE0006 -R . + # Ignore [ANSIBLE0016] Tasks that run when changed should likely be handlers + - ansible-lint -x ANSIBLE0006,ANSIBLE0016 -R . # Perform a syntax check on the playbook - ansible-playbook -i tests/inventory tests/test.yml --syntax-check # Run the playbook, don't bother stopping the Docker containers