Lines Matching refs:path
67 os.path.join(path, res_path)
68 for path in mod_paths
89 config_file = os.path.join(self.root_dir, rel_config)
98 def _load_xml_file(self, path): argument
107 tree = ElementTree.parse(path)
166 abs_path = os.path.join(self.root_dir, integration_dir)
213 jar_path = os.path.join(
221 if os.path.exists(jar_path):
225 jar_path = os.path.join(
233 if os.path.exists(jar_path):
258 extract_path = os.path.join(
259 self.temp_dir.name, os.path.basename(prebuilt_jar)
261 if not os.path.exists(extract_path):
264 test_files.append(os.path.join(extract_path, xml_path))
292 rel_config = os.path.relpath(test_file, self.root_dir)
308 for path in paths:
309 class_name = test_filter_utils.get_fully_qualified_class_name(path)
322 def find_int_test_by_path(self, path): argument
336 path, _ = test_filter_utils.split_methods(path)
339 if not path.endswith('.xml'):
344 path = os.path.realpath(path)
345 if not os.path.exists(path):
346 logging.debug('"%s": file not found!', path)
349 path, self.integration_dirs
352 rel_config = os.path.relpath(path, self.root_dir)