sphinx, buildbot (and code coverage). how do they

2019-05-10 13:21发布

问题:

I have a not-so-small python package, with quite some history, documented with docstrings. During its development we introduced buildbot and later on Jenkins/Hudson. Recently I added a sphinx recipe to my buildbot.cfg, in order to collect the documentation from the sources and keep up to date web accessible docs.

so far, so good: each time I commit a change, Jenkins takes care of extensively checking the package, generating a very complete overview and updating our documentation site.

one of the sphinx extensions I enabled: coverage, for documentation coverage report, which is currently undocumented.

I execute sphinx in my buildbot-generated environment, and I don't seem to manage to include the coverage statistics in the sphinx-generated documentation site!

any hints?

回答1:

as stated on the sphinx.ext.coverage page, coverage is computed if one specifies the builder -b coverage.

the result is the file "python.txt", a ReST file. It is your task to integrate it in your own documentation.