#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.
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