我正在使用Sphinx作为我的django项目文档。我想记录我的所有测试。 如何告诉index.rst从我的项目目录中带来所有以“test ...”开头的文件中的所有autodoc字符串。 我不想写:
.. automodule:: my_project.some_app.tests.test_api
.. autoclass:: my_project.some_app.tests.test_api.TestAPI
:members:
我在项目中的每个测试文件。
谢谢,Alex