in_file_path
Generates a list of commands to be run through gatorgrader.
add_checks_to_list(path, data_list, reformatted_data)
Recursively loop through the data and add checks that are found to the reformatted list.
Source code in gatorgrade/input/in_file_path.py
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
|
parse_yaml_file(file_path)
Parse a YAML file and return its contents as a list of dictionaries.
Source code in gatorgrade/input/in_file_path.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
|
reformat_yaml_data(data)
Reformat the raw data from a YAML file into a list of tuples.
Source code in gatorgrade/input/in_file_path.py
39 40 41 42 43 44 45 46 |
|