Merge "Verify JSON files in the CI"

This commit is contained in:
Zuul 2020-03-20 12:45:20 +00:00 committed by Gerrit Code Review
commit 595c36f192
1 changed files with 3 additions and 0 deletions

View File

@ -13,9 +13,12 @@ deps = -r{toxinidir}/requirements.txt
commands = stestr run --slowest {posargs}
[testenv:linters]
whitelist_externals = bash
commands =
# Check the *.rst files
doc8 README.rst guidelines
# Check the JSON files
bash -c 'for f in guidelines/*.json; do echo Checking "$f"; python -m json.tool "$f" /dev/null || exit 1; done'
[testenv:venv]
commands = {posargs}