Lines Matching refs:manifest
22 from manifest import Manifest, ManifestParser, find_manifest_xml_for_tree
82 manifest = tmp_path / "manifest.xml"
83 manifest.write_text(
97 ManifestParser(manifest).parse()
115 manifest = ManifestParser(manifest_path).parse()
116 assert manifest.project_with_path("external/project").remote == "aosp"
133 manifest = ManifestParser(manifest_path).parse()
134 assert manifest.project_with_path("external/project").revision == "main"
151 manifest = ManifestParser(manifest_path).parse()
152 assert manifest.project_with_path("external/project") is not None
169 manifest = ManifestParser(manifest_path).parse()
170 assert manifest.project_with_path("external/project").remote == "origin"
187 manifest = ManifestParser(manifest_path).parse()
188 assert manifest.project_with_path("external/project").revision == "master"
205 manifest = ManifestParser(manifest_path).parse()
206 assert manifest.project_with_path("other/path") is not None
229 manifest = Manifest.for_tree(repo_tree)
230 assert len(manifest.projects_by_path) == 3
250 manifest = Manifest.for_tree(repo_tree)
251 assert manifest.project_with_path("external/b").path == "external/b"
271 manifest = Manifest.for_tree(repo_tree)
273 manifest.project_with_path("external/d")