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