Fatih Degirmenci | 9cc680e | 2020-01-13 07:34:05 +0000 | [diff] [blame] | 1 | [tox] |
2 | basepython = py36 | ||||
3 | minversion = 2.5 | ||||
4 | skipsdist = true | ||||
5 | envlist = yamllint | ||||
6 | install_command = pip install {opts} {packages} | ||||
7 | deps = -r{toxinidir}/test-requirements.txt | ||||
8 | |||||
9 | [testenv:yamllint] | ||||
10 | # TODO: set ignore_outcome to false once issues are fixed | ||||
11 | ignore_outcome = true | ||||
12 | whitelist_externals = bash | ||||
13 | commands = | ||||
14 | bash -c "find {toxinidir}/pods -type f -regex '.*.ya?ml' -print0 | \ | ||||
15 | xargs -t -n1 -0 yamllint --format standard --strict" |