我想从tox运行以下命令。
python setup.py build_sphinx -b html
当我从控制台运行上述命令时,我已经配置了setup.py来构建文档(我从控制台检查了该命令后生成了文档。)>
然后,我如下编辑了tox.ini:
..... [testenv:sphinx] command = python setup.py build_sphinx -b html
setup.cfg如下:
[build_sphinx] project = project_name source-dir = module_name/doc build-dir = module_name/doc/build
但是当我运行
tox -e sphinx
时,tox退出并显示一条成功消息,但未生成任何文档。
有人可以帮我吗?
我想从tox运行以下命令。 python setup.py build_sphinx -b html当我从控制台运行上述命令时,我已经将setup.py配置为构建文档(我从...
我不建议使用setuptools建立文档。考虑改为直接使用sphinx,就像在https://github.com/tox-dev/tox/blob/master/tox.ini#L48-L53上使用tox本身一样。或者,请使用-vvv发布运行的确切输出,或者也可以公开使用该项目以供我们尝试。