Add doc/requirements.txt to venv tox target

This is needed to create a release note using the venv target:

  tox -e venv -- reno new <slug>

Change-Id: I1a0800a90781ede281b22db2892fb91e700d6e7b
This commit is contained in:
Matt Riedemann 2019-05-14 20:42:03 -04:00
parent 9922dec025
commit efb4aaa0cf
1 changed files with 5 additions and 0 deletions

View File

@ -30,6 +30,11 @@ commands =
[testenv:venv]
basepython = python3
setenv = PYTHONHASHSEED=0
deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt}
-r{toxinidir}/doc/requirements.txt
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
commands = {posargs}
[testenv:cover]