← GDG /

#093 gdtest_github_icon

#093 gdtest_github_icon OK CONFIG
Tests github_style: icon config
Tests github_style: 'icon' config (vs. default 'widget'). The GitHub link in the navbar should render as a simple icon, not the full star-count widget. Two functions (fetch, store) with NumPy docs.
View Site → Build Log ๐Ÿงช Test Coverage

Build Mode

● Has great-docs.yml

This package ships a pre-supplied config. The great-docs init step is skipped and great-docs build uses the spec-defined configuration directly. Tests specific config options and their rendered output.

Dimensions

K1
K1github_style: iconconfig

Source Files

๐Ÿ“ gdtest_github_icon/
๐Ÿ“„ __init__.py
"""Package testing github_style icon config."""

__version__ = "0.1.0"
__all__ = ["fetch", "store"]


def fetch(url: str) -> str:
    """
    Fetch data from a URL.

    Parameters
    ----------
    url
        The URL to fetch from.

    Returns
    -------
    str
        The fetched content.
    """
    return ""


def store(key: str, value: str) -> None:
    """
    Store a key-value pair.

    Parameters
    ----------
    key
        Storage key.
    value
        Value to store.
    """
    pass
๐Ÿ“„ README.md
# gdtest-github-icon

Tests github_style: icon config.
๐Ÿ“„ great-docs.yml
github_style: icon