我正在尝试仅为所选模块使用autodoc.我创建了一个文件,其中包括:
.. automodule:: some.specific.module :members:
并且它正确生成.不幸的是,autodoc也在不断尝试解析其他文件(并且由于导入错误而失败).我知道我可以嘲笑一些模块,但我想要一个更好的解决方案 - 阻止sphinx开始看它们.
如何确保仅加载所请求的模块,而不是(例如)test.other.module.
test.other.module