From 7c2ad372f46143aeda19cf236647a43d5f483c0a Mon Sep 17 00:00:00 2001 From: Brian Haley Date: Mon, 20 Jun 2022 21:19:30 -0400 Subject: [PATCH] Fix 'tox -e releasenotes' Running 'tox -e releasenotes' fails with: ERROR: You must give at least one requirement to install Added missing doc/requirements.txt dep to tox.ini Trivialfix Change-Id: I174460a0c1f4616cbdcb78bb8682adfe894f4206 --- releasenotes/source/conf.py | 2 -- tox.ini | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index 1ec0ea4bb7..45b29e2d4d 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -38,5 +38,3 @@ master_doc = 'index' # -- Options for Internationalization output ------------------------------ locale_dirs = ['locale/'] - - diff --git a/tox.ini b/tox.ini index 5b2f2bacbc..5337878619 100644 --- a/tox.ini +++ b/tox.ini @@ -38,4 +38,5 @@ whitelist_externals = bash [testenv:releasenotes] +deps = -r{toxinidir}/doc/requirements.txt commands = sphinx-build -a -W -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html