summaryrefslogtreecommitdiff
path: root/tests/root/conf.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-03-25 10:27:36 +0100
committerGeorg Brandl <georg@python.org>2014-03-25 10:27:36 +0100
commit9ff2cc2ce7c09b32058ef64d9f81ff6170117360 (patch)
treeefa63a59bf2f06ca10ca2854012724682a9ecc41 /tests/root/conf.py
parent9c7b7b98ccd649b54a9576fb658a33d6398e0f60 (diff)
parent01a3c169a06a2f69c6ca93dbee9fd5863af25c7c (diff)
downloadsphinx-9ff2cc2ce7c09b32058ef64d9f81ff6170117360.tar.gz
merge with stable
Diffstat (limited to 'tests/root/conf.py')
-rw-r--r--tests/root/conf.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/root/conf.py b/tests/root/conf.py
index 8025ba33..f0d40148 100644
--- a/tests/root/conf.py
+++ b/tests/root/conf.py
@@ -8,7 +8,7 @@ sys.path.append(os.path.abspath('..'))
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.jsmath', 'sphinx.ext.todo',
'sphinx.ext.coverage', 'sphinx.ext.autosummary',
'sphinx.ext.doctest', 'sphinx.ext.extlinks',
- 'sphinx.ext.viewcode', 'sphinx.ext.oldcmarkup', 'ext']
+ 'sphinx.ext.viewcode', 'ext']
jsmath_path = 'dummy.js'
@@ -23,7 +23,6 @@ copyright = '2010, Georg Brandl & Team'
version = '0.6'
release = '0.6alpha1'
today_fmt = '%B %d, %Y'
-# unused_docs = []
exclude_patterns = ['_build', '**/excluded.*']
keep_warnings = True
pygments_style = 'sphinx'
@@ -71,6 +70,13 @@ autosummary_generate = ['autosummary']
extlinks = {'issue': ('http://bugs.python.org/issue%s', 'issue '),
'pyurl': ('http://python.org/%s', None)}
+autodoc_mock_imports = [
+ 'missing_module',
+ 'missing_package1.missing_module1',
+ 'missing_package2.missing_module2',
+ 'missing_package3.missing_module3',
+]
+
# modify tags from conf.py
tags.add('confpytag')