Merge pull request #6086 from tk0miya/separate_serializinghtml

Separate json and pickle to sphinxcontrib package
This commit is contained in:
Takeshi KOMIYA
2019-02-17 22:40:12 +09:00
committed by GitHub
8 changed files with 48 additions and 150 deletions
+1 -5
View File
@@ -57,11 +57,7 @@ def nonascii_srcdir(request, rootdir, sphinx_test_tempdir):
# (html, epub, latex, texinfo and manpage)
@pytest.mark.parametrize(
"buildername",
[
# note: no 'html' - if it's ok with dirhtml it's ok with html
'dirhtml', 'singlehtml', 'pickle', 'json', 'text',
'changes', 'xml', 'pseudoxml', 'linkcheck',
],
['dirhtml', 'singlehtml', 'text', 'changes', 'xml', 'pseudoxml', 'linkcheck'],
)
@mock.patch('sphinx.builders.linkcheck.requests.head',
side_effect=request_session_head)