(yaml_path: pathlib.Path)
| 64 | |
| 65 | |
| 66 | def _parse_yaml(yaml_path: pathlib.Path) -> dict[str, Any]: |
| 67 | with open(yaml_path) as fh: |
| 68 | return yaml.safe_load(os.path.expandvars(fh.read())) or {} |
| 69 | |
| 70 | |
| 71 | def _extract_store_info(config: dict[str, Any]) -> dict[str, Any]: |
no test coverage detected