11# locust error
2- not_found_locust_error : str = "locust not found"
2+ not_found_locust_error : str = "Locust not found"
3+
34# json error
4- cant_reformat_json_error : str = "can't reformat json is type right?"
5- wrong_json_data_error : str = "can't parser json"
6- cant_find_json_error : str = "can't find json"
7- cant_save_json_error : str = "can't save json"
8- cant_generate_json_report : str = "can't generate json report"
5+ cant_reformat_json_error : str = "can't reformat JSON: is the type correct?"
6+ wrong_json_data_error : str = "can't parse JSON"
7+ cant_find_json_error : str = "can't find JSON file"
8+ cant_save_json_error : str = "can't save JSON file"
9+ cant_generate_json_report : str = "can't generate JSON report"
10+
911# executor error
10- executor_data_error : str = "executor receive wrong data"
11- executor_list_error : str = "executor receive wrong data list is none or wrong type"
12+ executor_data_error : str = "executor received invalid data"
13+ executor_list_error : str = "executor received invalid data: list is empty or wrong type"
14+
1215# HTML
13- html_generate_no_data_tag : str = "record is None"
16+ html_generate_no_data_tag : str = "no records to generate HTML report"
17+
1418# add command
15- add_command_exception_tag : str = "command value type should be as method or function"
19+ add_command_exception_tag : str = "command value type must be a method or function"
20+
1621# argparse
17- argparse_get_wrong_data : str = "argparse receive wrong data"
22+ argparse_get_wrong_data : str = "argparse received invalid data"
23+
1824# XML
19- cant_read_xml_error : str = "can't read xml"
20- xml_type_error : str = "xml type error"
25+ cant_read_xml_error : str = "can't read XML"
26+ xml_type_error : str = "XML type error"
27+
2128# Callback executor
22- get_bad_trigger_method : str = "get bad trigger method, only accept kwargs and args"
23- get_bad_trigger_function : str = "get bad trigger function only accept function in event_dict"
29+ get_bad_trigger_method : str = "invalid trigger method: only kwargs and args accepted "
30+ get_bad_trigger_function : str = "invalid trigger function: only functions in event_dict accepted "
0 commit comments