← GDG /

#121 gdtest_config_combo_f

#121 gdtest_config_combo_f OK CONFIG
Config combo: dynamic=false, dark_mode_toggle=false, exclude list, jupyter kernel. Tests static analysis with multiple opt-out flags.
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

K9 K15 K16 K17
K9dynamic: falseconfig
K15dark_mode_toggle: falseconfig
K16exclude listconfig
K17jupyter kernelconfig

Source Files

๐Ÿ“ gdtest_config_combo_f/
๐Ÿ“„ __init__.py
"""Config combo F โ€” dynamic=false, no dark mode, exclude list, jupyter kernel."""

__version__ = "0.1.0"
__all__ = ["analyze", "report", "export", "_internal_helper", "_utils"]


def analyze(dataset: list) -> dict:
    """
    Analyze a dataset and return summary statistics.

    Parameters
    ----------
    dataset : list
        The data to analyze.

    Returns
    -------
    dict
        Summary statistics including count, mean, and range.
    """
    return {"count": len(dataset)}


def report(results: dict) -> str:
    """
    Generate a text report from analysis results.

    Parameters
    ----------
    results : dict
        The results from `analyze`.

    Returns
    -------
    str
        Formatted report string.
    """
    return str(results)


def export(data: dict, fmt: str = "json") -> str:
    """
    Export data in the specified format.

    Parameters
    ----------
    data : dict
        The data to export.
    fmt : str
        Output format, one of 'json', 'csv', 'yaml'.

    Returns
    -------
    str
        The serialized data string.
    """
    return str(data)


def _internal_helper():
    """Internal helper that should be excluded."""
    pass


def _utils():
    """Internal utilities that should be excluded."""
    pass
๐Ÿ“„ README.md
# Config Combo F

Tests dynamic=false, dark_mode_toggle=false, exclude list, and jupyter kernel config.
๐Ÿ“„ great-docs.yml
dynamic: false
dark_mode_toggle: false
exclude:
  - _internal_helper
  - _utils
jupyter:
  kernel: python3