Source code for buildtest.cli.help

from buildtest.defaults import console
from rich.table import Table



































[docs]def buildtest_help(command): """Entry point for ``buildtest help`` which display a summary of how to use buildtest commands Args: command (str): Name of buildtest command specified by ``buildtest help <command>`` """ if command == "build": print_build_help() elif command == "buildspec": print_buildspec_help() elif command == "config": print_config_help() elif command == "inspect": print_inspect_help() elif command == "report": print_report_help() elif command == "path": print_path_help() elif command == "history": print_history_help() elif command == "cdash": print_cdash_help() elif command == "schema": print_schema_help() elif command == "stylecheck": print_stylecheck_help() elif command == "unittests": print_unittests_help()