Generate Python docs. Each module, class and function gets one .rst file.
(self)
| 260 | self._run_sphinx() |
| 261 | |
| 262 | def _gen_python_api_docs(self): |
| 263 | """ |
| 264 | Generate Python docs. |
| 265 | Each module, class and function gets one .rst file. |
| 266 | """ |
| 267 | # self.python_api_output_dir cannot be a temp dir, since other |
| 268 | # "*.rst" files reference it |
| 269 | pd = PyAPIDocsBuilder(self.python_api_output_dir, |
| 270 | self.documented_modules) |
| 271 | pd.generate_rst() |
| 272 | |
| 273 | def _run_sphinx(self): |
| 274 | """ |
no test coverage detected