Coverage for tests/test_themes.py: 60.00%
10 statements
« prev ^ index » next coverage.py v7.7.1, created at 2025-03-26 22:03 +0100
« prev ^ index » next coverage.py v7.7.1, created at 2025-03-26 22:03 +0100
1"""Tests for the different themes we claim to support."""
3from __future__ import annotations
5from typing import TYPE_CHECKING
7import pytest
9if TYPE_CHECKING:
10 from markdown import Markdown
11 from mkdocstrings import MkdocstringsPlugin
14@pytest.mark.parametrize(
15 "plugin",
16 [
17 {"theme": "mkdocs"},
18 {"theme": "readthedocs"},
19 {"theme": {"name": "material"}},
20 ],
21 indirect=["plugin"],
22)
23@pytest.mark.parametrize(
24 "identifier",
25 [
26 # TODO: add identifiers to this list!
27 ],
28)
29def test_render_themes_templates_python(identifier: str, plugin: MkdocstringsPlugin, ext_markdown: Markdown) -> None:
30 """Test rendering of a given theme's templates.
32 Parameters:
33 identifier: Parametrized identifier.
34 plugin: Pytest fixture (see conftest.py).
35 ext_markdown: Pytest fixture (see conftest.py).
36 """
37 handler = plugin.handlers.get_handler("shell")
38 handler._update_env(ext_markdown, config=plugin.handlers._tool_config)
39 data = handler.collect(identifier, {})
40 handler.render(data, {})