Lines Matching refs:yml
201 yml = yaml.load(f, Loader=SafeLoader)
202 if not yml:
205 pykwalify.core.Core(source_data=yml, schema_data=patches_schema).validate()
218 method[args.subcommand](args, yml)
220 def apply(self, args, yml): argument
221 patches = yml.get("patches", [])
288 self.clean(args, yml, patched_mods)
292 def clean(self, args, yml, mods=None): argument
293 clean_cmd = yml["clean-command"]
294 checkout_cmd = yml["checkout-command"]
304 for mod, mod_path in Patch.get_mod_paths(args, yml).items():
334 def list(self, args, yml): argument
335 patches = yml.get("patches", [])
343 def get_mod_paths(args, yml): argument
344 patches = yml.get("patches", [])