---------------------------------------------------------------------- This is the API documentation for the gdtest_ref_section_order library. ---------------------------------------------------------------------- ## Classes Core classes TaskConfig(name: str, timeout: int = 30) Configuration for a task. Parameters ---------- name The task name. timeout Timeout in seconds. ## Functions Public functions run_task(config: gdtest_ref_section_order.TaskConfig) -> str Run a task with the given configuration. Parameters ---------- config The task configuration. Returns ------- str Task result message. ---------------------------------------------------------------------- This is the CLI documentation for the package. ---------------------------------------------------------------------- ## CLI: gdtest-rso ``` Usage: gdtest-rso [OPTIONS] COMMAND [ARGS]... gdtest-rso: a CLI-first tool for running tasks. Options: --help Show this message and exit. Commands: list List available tasks. run Run a named task. ``` ### gdtest-rso run ``` Usage: gdtest-rso run [OPTIONS] NAME Run a named task. Options: -t, --timeout INTEGER Timeout in seconds. --help Show this message and exit. ``` ### gdtest-rso list ``` Usage: gdtest-rso list [OPTIONS] List available tasks. Options: --help Show this message and exit. ```