Fix deps for using venv tox target to create a release note

The reno package dependency is in doc/requirements.txt which
needs to be in the tox venv target deps if you want to create
a release note using:

  tox -e venv -- reno new <slug>

Change-Id: Ifa1fd55b2c8a3f65a74d9e5e2f0482d015c97723
This commit is contained in:
Matt Riedemann 2019-10-25 15:32:45 -04:00
parent 6cec98cf6f
commit 3ac639bcf7
1 changed files with 5 additions and 0 deletions

View File

@ -51,6 +51,11 @@ commands = flake8 {posargs}
[testenv:venv]
commands = {posargs}
# The docs requirements are included here for creating release notes, e.g.:
# tox -e venv -- reno new <slug>
deps =
{[testenv]deps}
-r{toxinidir}/doc/requirements.txt
[testenv:cover]
envdir = {toxworkdir}/shared