Fix ansible-test target change classification.

This commit is contained in:
Matt Clay 2019-04-26 11:33:14 -07:00
parent 357dafffa4
commit 2feda390b5

View file

@ -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 not target:
display.warning('Unexpected non-target found: %s' % path)
return minimal
if 'hidden/' in target.aliases:
if target.type == 'role':
return minimal # already expanded using get_dependent_paths
return {
'integration': self.integration_all_target,
'windows-integration': self.integration_all_target,
'network-integration': self.integration_all_target,
}
return minimal # already expanded using get_dependent_paths
return {
'integration': target.name if 'posix/' in target.aliases else None,