summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-doctest-skipif/conf.py
blob: 6f5498256d65d7a65a43dd4d1dfc026dd21f08ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extensions = ['sphinx.ext.doctest']

project = 'test project for the doctest :skipif: directive'
root_doc = 'skipif'
source_suffix = '.txt'
exclude_patterns = ['_build']

doctest_global_setup = '''
from tests.test_ext_doctest import record

record('doctest_global_setup', 'body', True)
'''

doctest_global_cleanup = '''
record('doctest_global_cleanup', 'body', True)
'''