← GDG /

#102 gdtest_dynamic_false

#102 gdtest_dynamic_false OK CONFIG
Tests dynamic: false config
Tests dynamic: false config. Uses static introspection instead of runtime import. Two simple functions (greet, farewell) to verify static analysis works.
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
K9dynamic: falseconfig

Source Files

๐Ÿ“ gdtest_dynamic_false/
๐Ÿ“„ __init__.py
"""Package testing dynamic false config."""

__version__ = "0.1.0"
__all__ = ["greet", "farewell"]


def greet(name: str) -> str:
    """
    Greet a person by name.

    Parameters
    ----------
    name
        The name of the person to greet.

    Returns
    -------
    str
        A greeting message.
    """
    return f"Hello, {name}!"


def farewell(name: str) -> str:
    """
    Say farewell to a person by name.

    Parameters
    ----------
    name
        The name of the person to bid farewell.

    Returns
    -------
    str
        A farewell message.
    """
    return f"Goodbye, {name}!"
๐Ÿ“„ README.md
# gdtest-dynamic-false

Tests dynamic: false config.
๐Ÿ“„ great-docs.yml
dynamic: false