From c26ad42e9f646d2caff951f8291bd429356669cf Mon Sep 17 00:00:00 2001 From: Felipe Monteiro Date: Sat, 2 Dec 2017 16:40:04 +0000 Subject: [PATCH] Fix readthedocs document build job for Deckhand Currently readthedocs build is failing for DH because it runs pip install -rtest-requirements.txt [0] when test-requirements.txt doesn't include oslo.policy. And readthedocs can't run tox -e docs which is what is intended to be run for documentation generation. [0] https://readthedocs.org/projects/deckhand/builds/6351568/ Change-Id: I4ad93e41b0410c547c9fec7d6d38f3b7e7f6829f --- test-requirements.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test-requirements.txt b/test-requirements.txt index 9d540674..11610a02 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -20,3 +20,7 @@ sphinx_rtd_theme==0.2.4 pifpaf==0.10.0 reno>=2.5.0 # Apache-2.0 pytest-html==1.16.0 + +# NOTE(fmontei): The requirement below is only included because readthedocs +# depends on it to work, since it runs pip install -rtest-requirements.txt. +oslo.policy>=1.23.0 # Apache-2.0