Lines Matching refs:full_path
241 def _match_path(self, path, full_path, pattern):
250 full_path = os.path.join(start_dir, path)
251 if os.path.isfile(full_path):
255 if not self._match_path(path, full_path, pattern):
258 name = self._get_name_from_path(full_path)
264 mod_file = os.path.abspath(getattr(module, '__file__', full_path))
266 fullpath_noext = os.path.splitext(full_path)[0]
269 mod_name = os.path.splitext(os.path.basename(full_path))[0]
270 expected_dir = os.path.dirname(full_path)
275 elif os.path.isdir(full_path):
276 if not os.path.isfile(os.path.join(full_path, '__init__.py')):
283 name = self._get_name_from_path(full_path)
293 for test in self._find_tests(full_path, pattern):