File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -235,7 +235,18 @@ def test_html_style(app):
235
235
not in result )
236
236
237
237
238
- @pytest .mark .sphinx ('html' , testroot = 'basic' )
238
+ @pytest .mark .sphinx (
239
+ 'html' ,
240
+ testroot = 'basic' ,
241
+ # alabaster changed default sidebars in 1.0.0
242
+ confoverrides = {'html_sidebars' : {'**' : [
243
+ 'about.html' ,
244
+ 'navigation.html' ,
245
+ 'relations.html' ,
246
+ 'searchbox.html' ,
247
+ 'donate.html' ,
248
+ ]}},
249
+ )
239
250
def test_html_sidebar (app ):
240
251
ctx : dict [str , Any ] = {}
241
252
Original file line number Diff line number Diff line change @@ -1685,7 +1685,11 @@ def test_gettext_disallow_fuzzy_translations(app):
1685
1685
assert 'FEATURES' not in content
1686
1686
1687
1687
1688
- @pytest .mark .sphinx ('html' , testroot = 'basic' , confoverrides = {'language' : 'de' })
1688
+ @pytest .mark .sphinx (
1689
+ 'html' ,
1690
+ testroot = 'basic' ,
1691
+ confoverrides = {'language' : 'de' , 'html_sidebars' : {'**' : ['searchbox.html' ]}},
1692
+ )
1689
1693
def test_customize_system_message (make_app , app_params ):
1690
1694
try :
1691
1695
# clear translators cache
You can’t perform that action at this time.
0 commit comments