From d6cd56baca1e7482eac53373a143a32970905e06 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Mon, 2 Dec 2019 04:11:45 -0600 Subject: [PATCH] Readd reno to test-requirements If86dd619402495d9d4470b14cb270fcf53db6794 moved reno to the docs requirements file, so it is now only installed into the docs virtual environment. Our instructions for adding release notes state to use "tox -e venv -- reno new [slug]" to generate the new release note. This now fails due to reno not being present in the default virtual environment. This add reno back to test-requirements to make sure it is present for generating new release notes. Change-Id: I394c1f802409137d95a82ed6d1a4b82cf755b9e7 Signed-off-by: Sean McGinnis --- test-requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test-requirements.txt b/test-requirements.txt index 60232017634..beb5762a2c2 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -23,3 +23,4 @@ tempest>=17.1.0 # Apache-2.0 # so we need to pin it here to a known working version bandit==1.6.0 # Apache-2.0 doc8>=0.6.0 # Apache-2.0 +reno>=2.5.0 # Apache-2.0