From 8c80931444ec7fb273d4110e2d5f9801c874051a Mon Sep 17 00:00:00 2001 From: Julian Berman Date: Sun, 23 Dec 2012 17:26:36 -0500 Subject: [PATCH] Add doctest ext --- docs/conf.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 4dec12d..9616262 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,12 @@ sys.path.append(os.path.abspath('_themes')) # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.ifconfig', 'sphinx.ext.todo', 'sphinx.ext.intersphinx'] +extensions = [ + 'sphinx.ext.ifconfig', + 'sphinx.ext.todo', + 'sphinx.ext.intersphinx', + 'sphinx.ext.doctest', +] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']