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