summaryrefslogtreecommitdiffstats
path: root/debian/patches/skip_tests_serializinghtml.diff
blob: b9401ccfaf7a2824934963a045dd5d792f57589a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
From: Dmitry Shachnev <mitya57@debian.org>
Date: Thu, 6 Feb 2020 23:55:28 +0300
Subject: Skip tests that require sphinxcontrib.serializinghtml module

---
 tests/test_api_translator.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/test_api_translator.py b/tests/test_api_translator.py
index 2185fb8..66aa17f 100644
--- a/tests/test_api_translator.py
+++ b/tests/test_api_translator.py
@@ -36,6 +36,7 @@ def test_singlehtml_set_translator_for_singlehtml(app, status, warning):
     assert translator_class.__name__ == 'ConfSingleHTMLTranslator'
 
 
+@pytest.mark.skip('Requires sphinxcontrib.serializinghtml module')
 @pytest.mark.sphinx('pickle', testroot='api-set-translator')
 def test_pickle_set_translator_for_pickle(app, status, warning):
     translator_class = app.builder.get_translator_class()
@@ -43,6 +44,7 @@ def test_pickle_set_translator_for_pickle(app, status, warning):
     assert translator_class.__name__ == 'ConfPickleTranslator'
 
 
+@pytest.mark.skip('Requires sphinxcontrib.serializinghtml module')
 @pytest.mark.sphinx('json', testroot='api-set-translator')
 def test_json_set_translator_for_json(app, status, warning):
     translator_class = app.builder.get_translator_class()