From 922c74aabadc932042a888905c7b06fd2a4f561a Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 17 Nov 2017 20:16:08 +0100 Subject: [PATCH] Add test-requirements.txt Add test-requirements.txt including files needed for docs build. splitting this up will help with our CI infrastructure. Change-Id: I0ee2bb1527328eac5d2b4a53b4335b42272cd56a --- requirements.txt | 2 -- test-requirements.txt | 6 ++++++ tox.ini | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 test-requirements.txt diff --git a/requirements.txt b/requirements.txt index 3f81433..1d18dd3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,5 +3,3 @@ # process, which may cause wedges in the gate later. pbr>=2.0 # Apache-2.0 -sphinx>=1.6.2 # BSD -openstackdocstheme>=1.11.0 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt new file mode 100644 index 0000000..7a5c9c5 --- /dev/null +++ b/test-requirements.txt @@ -0,0 +1,6 @@ +# The order of packages is significant, because pip processes them in the order +# of appearance. Changing the order has an impact on the overall integration +# process, which may cause wedges in the gate later. + +sphinx>=1.6.2 # BSD +openstackdocstheme>=1.11.0 # Apache-2.0 diff --git a/tox.ini b/tox.ini index e3b8655..951953b 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,9 @@ skipsdist = True usedevelop = True setenv = VIRTUAL_ENV={envdir} install_command = pip install -U {opts} {packages} -deps = -r{toxinidir}/requirements.txt +deps = + -r{toxinidir}/requirements.txt + -r{toxinidir}/test-requirements.txt [testenv:venv] commands = {posargs}