Add dependencies to releasenotes environment

The current tox 'releasenotes' environment does not include the
doc/requirements.txt as a dependency, and as a result sphinx-build
cannot be found when attempting to build the release notes.  So add
it.

Change-Id: Ie86dc0966826b38999170d3b07d5616bd151baa8
This commit is contained in:
Brian Rosmaita 2020-05-29 22:15:27 -04:00
parent 76c6b3ad96
commit 08c609ceba
1 changed files with 1 additions and 0 deletions

View File

@ -90,6 +90,7 @@ whitelist_externals =
make
[testenv:releasenotes]
deps = {[testenv:docs]deps}
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[flake8]