diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = pep8 +envlist = pep8,yamllint skipsdist = true [testenv] @@ -10,3 +10,11 @@ deps = [testenv:pep8] basepython = python3 commands = flake8 + +[testenv:yamllint] +basepython = python3 +files = + INFO.yaml + tools +commands = + yamllint -s {[testenv:yamllint]files} |