From: Gergely Csatari Date: Tue, 29 Jun 2021 13:47:44 +0000 (+0300) Subject: Fix of requirements file tox.ini X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=36712677ca512517c7bbc2c7f039976c6ae8bbef;p=opnfvdocs.git Fix of requirements file tox.ini The reference to requirements.txt pointed to the etc folder, however the file is in the docs folder. This commit fixes the reference. Signed-off-by: Gergely Csatari --- diff --git a/tox.ini b/tox.ini index c1993d9ee..5901c6be4 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ envlist = docs,docs-linkcheck skipsdist = true [testenv:docs] -deps = -r{toxinidir}/etc/requirements.txt +deps = -r{toxinidir}/docs/requirements.txt commands = sphinx-build -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html echo "Generated docs available in {toxinidir}/docs/_build/html"