Lines Matching refs:path
12 this_path = os.path.abspath(os.path.dirname(__file__))
21 self._root = os.path.split(stream.name)[0]
27 filename = os.path.join(self._root, config['path'])
32 lst[idx] = os.path.join(prefix, lst[idx])
111 default=os.path.join(this_path, 'tests'),
112 type=os.path.abspath,
200 def parse_tests_file(path): argument
214 with open(path) as f:
245 if not os.path.isabs(options.remote_server_full_directory):
246 …options.remote_server_full_directory = os.path.join(this_path, options.remote_server_full_director…
248 …options.remote_server_full_directory = os.path.join(options.remote_server_directory_prefix, option…
252 with open(os.path.join(options.remote_server_full_directory, "build_type"), "r") as f:
273 def _handle_entry(test_type, path, result): argument
274 if not os.path.exists(path):
275 print("Path {} does not exist. Quitting ...".format(path))
278 … if (test_type == 'all' or handler['type'] == test_type) and path.endswith(handler['extension']):
279 result.append(handler['creator'](path))