← GDG /

#120 gdtest_config_combo_e

#120 gdtest_config_combo_e OK CONFIG
Config combo: source.branch=develop, source.path=lib, parser=sphinx, changelog config. Tests source link customization with Sphinx parsing.
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

K2 K3 K11 K21
K2source.branch overrideconfig
K3source.path overrideconfig
K11parser: sphinxconfig
K21changelog configconfig

Source Files

๐Ÿ“ gdtest_config_combo_e/
๐Ÿ“„ __init__.py
"""Config combo E โ€” source.branch, source.path, parser=sphinx, changelog."""

__version__ = "0.1.0"
__all__ = ["connect", "disconnect", "send", "receive"]


def connect(host: str, port: int = 8080) -> bool:
    """
    Connect to a remote host.

    :param host: The hostname or IP address.
    :type host: str
    :param port: The port number (default 8080).
    :type port: int
    :returns: True if connected successfully.
    :rtype: bool
    """
    return True


def disconnect() -> None:
    """
    Disconnect from the remote host.

    :returns: None
    """
    pass


def send(data: bytes) -> int:
    """
    Send data to the remote host.

    :param data: The bytes to send.
    :type data: bytes
    :returns: Number of bytes sent.
    :rtype: int
    """
    return len(data)


def receive(max_bytes: int = 1024) -> bytes:
    """
    Receive data from the remote host.

    :param max_bytes: Maximum bytes to receive.
    :type max_bytes: int
    :returns: The received bytes.
    :rtype: bytes
    """
    return b""
๐Ÿ“„ CHANGELOG.md
# Changelog

## [0.1.0] - 2026-01-15

### Added
- Initial release.
- Connection management functions.
๐Ÿ“„ README.md
# Config Combo E

Tests source.branch=develop, source.path=lib, parser=sphinx, and changelog.
๐Ÿ“„ great-docs.yml
parser: sphinx
source:
  branch: develop
  path: lib
changelog: CHANGELOG.md