Fix of requirements file tox.ini
authorGergely Csatari <gergely.csatari@nokia.com>
Tue, 29 Jun 2021 13:47:44 +0000 (16:47 +0300)
committerGergely Csatari <gergely.csatari@nokia.com>
Tue, 29 Jun 2021 13:47:44 +0000 (16:47 +0300)
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 <gergely.csatari@nokia.com>
tox.ini

diff --git a/tox.ini b/tox.ini
index c1993d9..5901c6b 100644 (file)
--- 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"