From 26694e06768f43183c6921e68aa7e9e7b6cf329f Mon Sep 17 00:00:00 2001 From: Hironori Shiina Date: Thu, 19 Apr 2018 11:45:42 +0900 Subject: [PATCH] Install reno to venv for creating release note Although reno was once moved from test-requirements to doc/requirement for introducing the new TPI, it is also necessary for creating a releasenote with 'tox -e venv'. This patch adds doc/requirements to venv for installing reno. Change-Id: Ic9c755ef98b71448457560c78ae69571d1f4bd00 --- tox.ini | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tox.ini b/tox.ini index 192a12bc22..745fa3aaad 100644 --- a/tox.ini +++ b/tox.ini @@ -98,6 +98,10 @@ commands = [testenv:venv] setenv = PYTHONHASHSEED=0 +deps = + -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} + -r{toxinidir}/test-requirements.txt + -r{toxinidir}/doc/requirements.txt commands = {posargs} [flake8]