File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 88
99from _pytest import __version__ as full_version
1010
11+
1112if TYPE_CHECKING :
1213 import sphinx .application
1314
149150# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
150151
151152html_theme = "furo"
152- html_theme_options = {
153- "sidebar_hide_name" : True
154- }
153+ html_theme_options = {"sidebar_hide_name" : True }
155154
156- html_static_path = [' _static' ]
155+ html_static_path = [" _static" ]
157156html_css_files = [
158157 "pytest-custom.css" ,
159158]
266265# -- Custom documentation plugin ------------------------------------------------------
267266# https://www.sphinx-doc.org/en/master/development/tutorials/extending_syntax.html#the-setup-function
268267
268+
269269def setup (app : sphinx .application .Sphinx ) -> None :
270270 app .add_crossref_type (
271271 "fixture" ,
You can’t perform that action at this time.
0 commit comments