diff options
author | Georg Brandl <georg@python.org> | 2008-03-22 10:56:23 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-03-22 10:56:23 (GMT) |
commit | 17baef0b7c7986619b7db46c70239f6b1a7d6a8f (patch) | |
tree | bae7021097e9d7f3c3fad8f1264097328d599cf4 /Doc/Makefile | |
parent | 86f38c81ae2ff13c12dacd4137916e041e42da46 (diff) | |
download | cpython-17baef0b7c7986619b7db46c70239f6b1a7d6a8f.zip cpython-17baef0b7c7986619b7db46c70239f6b1a7d6a8f.tar.gz cpython-17baef0b7c7986619b7db46c70239f6b1a7d6a8f.tar.bz2 |
Activate the Sphinx doctest extension and convert howto/functional to use it.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index e94be81..64a1b2f 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -82,6 +82,11 @@ coverage: BUILDER = coverage coverage: build @echo "Coverage finished; see c.txt and python.txt in build/coverage" +doctest: BUILDER = doctest +doctest: build + @echo "Testing of doctests in the sources finished, look at the " \ + "results in build/doctest/output.txt" + clean: -rm -rf build/* -rm -rf tools/sphinx |