|
|
|
|
@ -631,17 +631,14 @@ class PathMapper(object):
|
|
|
|
|
if not os.path.exists(path):
|
|
|
|
|
return minimal
|
|
|
|
|
|
|
|
|
|
target = self.integration_targets_by_name[path.split('/')[3]]
|
|
|
|
|
target = self.integration_targets_by_name.get(path.split('/')[3])
|
|
|
|
|
|
|
|
|
|
if 'hidden/' in target.aliases:
|
|
|
|
|
if target.type == 'role':
|
|
|
|
|
return minimal # already expanded using get_dependent_paths
|
|
|
|
|
if not target:
|
|
|
|
|
display.warning('Unexpected non-target found: %s' % path)
|
|
|
|
|
return minimal
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
'integration': self.integration_all_target,
|
|
|
|
|
'windows-integration': self.integration_all_target,
|
|
|
|
|
'network-integration': self.integration_all_target,
|
|
|
|
|
}
|
|
|
|
|
if 'hidden/' in target.aliases:
|
|
|
|
|
return minimal # already expanded using get_dependent_paths
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
'integration': target.name if 'posix/' in target.aliases else None,
|
|
|
|
|
|