Fix ansible-test handling of network plugins.

pull/37626/merge
Matt Clay 6 years ago
parent 1b121fc9e4
commit 4e0ecfd553

@ -335,7 +335,9 @@ class PathMapper(object):
'units': units_path, 'units': units_path,
} }
if path.startswith('lib/ansible/plugins/terminal/'): if (path.startswith('lib/ansible/plugins/terminal/') or
path.startswith('lib/ansible/plugins/cliconf/') or
path.startswith('lib/ansible/plugins/netconf/')):
if ext == '.py': if ext == '.py':
if name in self.prefixes and self.prefixes[name] == 'network': if name in self.prefixes and self.prefixes[name] == 'network':
network_target = 'network/%s/' % name network_target = 'network/%s/' % name

Loading…
Cancel
Save