Merge "Move execution of 'tools/check-releasenotes.py' to pep8"

This commit is contained in:
Zuul 2018-03-02 14:16:27 +00:00 committed by Gerrit Code Review
commit 4c24b9c9bd
2 changed files with 4 additions and 1 deletions

View File

@ -25,6 +25,8 @@ RELEASE_NOTES_DIR = "releasenotes/notes/"
IGNORE_FILES = (
'releasenotes/notes/fix-get-deploy-info-port.yaml', # Newton 6.0.0
'releasenotes/notes/fix-mitaka-ipa-iscsi.yaml', # Newton 6.0.0
# Rocky, accidentally got in
'releasenotes/notes/add-id-and-uuid-filtering-to-sqalchemy-api.yaml',
)

View File

@ -36,6 +36,8 @@ commands =
{toxinidir}/tools/run_bashate.sh {toxinidir}
# Check the *.rst files
doc8 README.rst CONTRIBUTING.rst doc/source --ignore D001
# Check to make sure reno releasenotes created with 'reno new'
{toxinidir}/tools/check-releasenotes.py
[testenv:cover]
setenv = VIRTUAL_ENV={envdir}
@ -88,7 +90,6 @@ commands =
[testenv:releasenotes]
commands =
{toxinidir}/tools/check-releasenotes.py
sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:venv]