Make it possible to run upstream tests

- Do not use readthedocs-sphinx-ext, it is not packaged.
- Point to local version of sphinx_rtd_theme.

Gbp-Pq: Name tests-configuration.patch
This commit is contained in:
Dmitry Shachnev 2018-06-29 16:58:36 +03:00 committed by zhouganqing
parent d53f640320
commit 105ddec5b7
1 changed files with 2 additions and 5 deletions

View File

@ -32,9 +32,7 @@ def build(root, builder='html', **kwargs):
confoverrides = kwargs.pop('confoverrides', {})
confoverrides['html_theme'] = 'sphinx_rtd_theme'
extensions = confoverrides.get('extensions', [])
extensions.append('readthedocs_ext.readthedocs')
confoverrides['extensions'] = extensions
confoverrides['html_theme_path'] = [os.path.abspath('../../..')]
kwargs['confoverrides'] = confoverrides
try:
@ -54,7 +52,6 @@ def build(root, builder='html', **kwargs):
def build_all(root, **kwargs):
for builder in ['html', 'singlehtml', 'readthedocs', 'readthedocsdirhtml',
'readthedocssinglehtml', 'readthedocssinglehtmllocalmedia']:
for builder in ['html', 'singlehtml']:
with build(root, builder, **kwargs) as ret:
yield ret