sphinx/tests/roots/test-ext-autodoc/conf.py

16 lines
215 B
Python
Raw Normal View History

2018-02-19 07:39:14 -06:00
import os
import sys
sys.path.insert(0, os.path.abspath('.'))
extensions = ['sphinx.ext.autodoc']
# The suffix of source filenames.
source_suffix = '.rst'
autodoc_mock_imports = [
'dummy'
]
nitpicky = True