summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGergely Csatari <gergely.csatari@nokia.com>2021-06-29 16:47:44 +0300
committerGergely Csatari <gergely.csatari@nokia.com>2021-06-29 16:47:44 +0300
commit36712677ca512517c7bbc2c7f039976c6ae8bbef (patch)
tree676caa04b2312af9b2f559a310055f5fefe188e8
parentbccd88ef95f02d1c47acf0fba9c6d2d1c7408540 (diff)
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 <gergely.csatari@nokia.com>
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
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"