summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-doctest-with-autodoc/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/roots/test-ext-doctest-with-autodoc/conf.py')
-rw-r--r--tests/roots/test-ext-doctest-with-autodoc/conf.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/roots/test-ext-doctest-with-autodoc/conf.py b/tests/roots/test-ext-doctest-with-autodoc/conf.py
new file mode 100644
index 0000000..1ec1dd9
--- /dev/null
+++ b/tests/roots/test-ext-doctest-with-autodoc/conf.py
@@ -0,0 +1,7 @@
+import sys
+from os import path
+
+sys.path.insert(0, path.abspath(path.dirname(__file__)))
+
+project = 'test project for doctest + autodoc reporting'
+extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest']