为什么sphinx-apidoc不能在这个travis / tox构建中找到包?

问题描述 投票:0回答:1

特拉维斯建造:https://travis-ci.com/Laurentiu-Andronache/he/jobs/184044676

conf.py:https://github.com/Laurentiu-Andronache/he/blob/master/docs/source/conf.py

tox.ini:https://github.com/Laurentiu-Andronache/he/blob/master/tox.ini(查看[testenv:doc8])

python-3.x travis-ci python-sphinx
1个回答
1
投票

Sphinx无法找到您的Python包并导入它。相应地调整你的sys.path

https://github.com/Laurentiu-Andronache/he/blob/master/docs/source/conf.py#L22

sys.path.insert(0, os.path.join(__location__, '../../src'))

如果它不起作用,您可能需要将/he附加到该值。

© www.soinside.com 2019 - 2024. All rights reserved.