()
| 945 | |
| 946 | |
| 947 | def show_detailed_help(): |
| 948 | c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX |
| 949 | c3 = colorama.Fore.BLUE + colorama.Back.LIGHTYELLOW_EX |
| 950 | c6 = colorama.Back.CYAN |
| 951 | cr = colorama.Style.RESET_ALL |
| 952 | show_basic_usage() |
| 953 | print(c6 + " " + c2 + " Commands: " + c6 + " ") |
| 954 | print(cr) |
| 955 | show_install_usage() |
| 956 | show_commander_usage() |
| 957 | show_behave_gui_usage() |
| 958 | show_caseplans_usage() |
| 959 | show_mkdir_usage() |
| 960 | show_mkfile_usage() |
| 961 | show_mkrec_usage() |
| 962 | show_codegen_usage() |
| 963 | show_recorder_usage() |
| 964 | show_mkpres_usage() |
| 965 | show_mkchart_usage() |
| 966 | show_convert_usage() |
| 967 | show_print_usage() |
| 968 | show_translate_usage() |
| 969 | show_extract_objects_usage() |
| 970 | show_inject_objects_usage() |
| 971 | show_objectify_usage() |
| 972 | show_revert_objects_usage() |
| 973 | show_encrypt_usage() |
| 974 | show_decrypt_usage() |
| 975 | show_download_usage() |
| 976 | show_grid_hub_usage() |
| 977 | show_grid_node_usage() |
| 978 | print( |
| 979 | '* (Use "' + c3 + "pytest" + cr + '" or "' + c3 + '' |
| 980 | '' + "python" + cr + '" for running tests) *\n' |
| 981 | ) |
| 982 | |
| 983 | |
| 984 | def main(): |
no test coverage detected
searching dependent graphs…