Lines Matching refs:path
71 return [os.path.join(path, res_path) for path in mod_paths
87 config_file = os.path.join(self.root_dir, rel_config)
95 def _load_xml_file(self, path): argument
104 tree = ElementTree.parse(path)
159 abs_path = os.path.join(self.root_dir, integration_dir)
201 jar_path = os.path.join(
204 if os.path.exists(jar_path):
208 jar_path = os.path.join(
211 if os.path.exists(jar_path):
236 extract_path = os.path.join(
237 self.temp_dir.name, os.path.basename(prebuilt_jar))
238 if not os.path.exists(extract_path):
242 test_files.append(os.path.join(extract_path, xml_path))
249 host_framework_dir = os.path.join(
251 if not os.path.isdir(host_framework_dir):
255 prebuilt_dir = os.path.dirname(prebuilt_jar)
261 if os.path.splitext(prebuilt)[1] == '.jar':
262 prebuilt_jar = os.path.join(prebuilt_dir, prebuilt)
289 rel_config = os.path.relpath(test_file, self.root_dir)
304 for path in paths:
307 path))
318 def find_int_test_by_path(self, path): argument
332 path, _ = test_finder_utils.split_methods(path)
335 if not path.endswith('.xml'):
340 path = os.path.realpath(path)
341 if not os.path.exists(path):
342 logging.debug('"%s": file not found!', path)
344 int_dir = test_finder_utils.get_int_dir_from_path(path,
347 rel_config = os.path.relpath(path, self.root_dir)