Lines Matching full:metadata
12 "metadata":[
55 # Also needs to look up the metadata from the .metadata.yaml files
56 metadata_file = yaml_file.replace("errors.yaml", "metadata.yaml")
57 metadata = []
61 metadata = yaml.safe_load(mfd.read())
70 error["metadata"] = get_metadata(e["name"], metadata)
83 def get_metadata(name, metadata): argument
84 """Finds metadata entries for the error in the metadata
85 dictionary parsed out of the *.metadata.yaml files.
87 The metadata YAML looks something like:
97 for m in metadata: