Add tox -eansible-lint support
Start using tox to setup ansible-lint since we are dealing with python modules. This is part of an effort to have all ansible modules use the same testing syntax. Change-Id: I2b38d165472606a12208ec198a9ac4dab967bc72 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
parent
fef11fbbdf
commit
5cc182408d
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.tox/
|
1
requirements.txt
Normal file
1
requirements.txt
Normal file
@ -0,0 +1 @@
|
||||
ansible
|
1
test-requirements.txt
Normal file
1
test-requirements.txt
Normal file
@ -0,0 +1 @@
|
||||
ansible-lint
|
16
tox.ini
Normal file
16
tox.ini
Normal 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}
|
Loading…
x
Reference in New Issue
Block a user