From 36712677ca512517c7bbc2c7f039976c6ae8bbef Mon Sep 17 00:00:00 2001 From: Gergely Csatari Date: Tue, 29 Jun 2021 16:47:44 +0300 Subject: [PATCH] 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 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.16.6