Merge "Add tox -eansible-lint support"

This commit is contained in:
Jenkins 2015-11-18 16:07:45 +00:00 committed by Gerrit Code Review
commit 31514496ad
4 changed files with 19 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.tox/

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
ansible

1
test-requirements.txt Normal file
View File

@ -0,0 +1 @@
ansible-lint

16
tox.ini Normal file
View File

@ -0,0 +1,16 @@
[tox]
minversion = 1.6
envlist = ansible-lint
skipsdist = True
[testenv]
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
[testenv:ansible-lint]
whitelist_externals = bash
commands =
bash -c "find . -type f -regex '.*.y[a]?ml' -execdir ansible-lint \{\} \;"
[testenv:venv]
commands = {posargs}