[stable-2.7] Add change classification for powershell wrappers.

(cherry picked from commit c25db4ee8d)

Co-authored-by: Matt Clay <matt@mystile.com>
pull/49439/head
Matt Clay 6 years ago committed by Toshio Kuratomi
parent 81879e9792
commit 432c9e8b22

@ -313,6 +313,17 @@ class PathMapper(object):
if path.startswith('hacking/'):
return minimal
if path.startswith('lib/ansible/executor/powershell/'):
units_path = 'test/units/executor/powershell/'
if units_path not in self.units_paths:
units_path = None
return {
'windows-integration': self.integration_all_target,
'units': units_path,
}
if path.startswith('lib/ansible/modules/'):
module_name = self.module_names_by_path.get(path)

Loading…
Cancel
Save