Lines Matching +full:repo +full:- +full:name
1 # resulttool - common library/utility functions
6 # SPDX-License-Identifier: GPL-2.0-only
56 data = json.loads(response.read().decode('utf-8'))
92 for name in files:
93 f = os.path.join(root, name)
94 if name == "testresults.json":
128 data = base64.b64decode(data.encode("utf-8"))
130 return data.decode("utf-8", errors='ignore')
174 with open(dst.replace(fn, "ptest-raw.log"), "w+") as f:
180 with open(dst.replace(fn, "ptest-%s.log" % i), "w+") as f:
183 def git_get_result(repo, tags, configmap=store_map): argument
186 files = repo.run_cmd(['ls-tree', "--name-only", "-r", tag]).splitlines()
205 for obj in parse_json_stream(repo.run_cmd(['show'] + git_objs + ['--'])):
216 (result json file path, test run name, test run (dict), test run "results" (dict))