diff options
| author | Ryan Williams <rdw@lindenlab.com> | 2009-07-30 19:28:27 -0700 |
|---|---|---|
| committer | Ryan Williams <rdw@lindenlab.com> | 2009-07-30 19:28:27 -0700 |
| commit | bc14a43d9232cffba1c0a21e18feb8f092f4e481 (patch) | |
| tree | 30e841585a707199deaf6e78174edf878745b41e /doc/Makefile | |
| parent | 2cd90437f80c1bccdd98da0eabbb526553f0c2fb (diff) | |
| download | eventlet-bc14a43d9232cffba1c0a21e18feb8f092f4e481.tar.gz | |
Added coverage command to Makefile.
Diffstat (limited to 'doc/Makefile')
| -rw-r--r-- | doc/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile index 9369df3..01336ea 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -25,6 +25,7 @@ help: @echo " changes to make an overview of all changed/added/deprecated items" @echo " linkcheck to check all external links for integrity" @echo " doctest to run all doctests embedded in the documentation (if enabled)" + @echo " coverage to generate a docstring coverage report" clean: -rm -rf _build/* @@ -86,3 +87,8 @@ doctest: $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) _build/doctest @echo "Testing of doctests in the sources finished, look at the " \ "results in _build/doctest/output.txt." + +coverage: + $(SPHINXBUILD) -b coverage $(ALLSPHINXOPTS) _build/coverage + @echo "Coverage report finished, look at the " \ + "results in _build/coverage/python.txt." |
