Obtain the parsed targets YAML file.
(yaml_path: pathlib.Path)
| 69 | |
| 70 | |
| 71 | def get_targets(yaml_path: pathlib.Path): |
| 72 | """Obtain the parsed targets YAML file.""" |
| 73 | with yaml_path.open("rb") as fh: |
| 74 | return yaml.load(fh, Loader=yaml.SafeLoader) |
| 75 | |
| 76 | |
| 77 | def get_target_settings(yaml_path: pathlib.Path, target: str): |
no outgoing calls
no test coverage detected