From c25db4ee8d5dd0f3d1aafcbddb2680a1d7ef81b9 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Tue, 13 Nov 2018 21:51:39 -0800 Subject: [PATCH] Add change classification for powershell wrappers. --- test/runner/lib/classification.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/test/runner/lib/classification.py b/test/runner/lib/classification.py index 1ccb877ad9..10fd83f3d6 100644 --- a/test/runner/lib/classification.py +++ b/test/runner/lib/classification.py @@ -338,6 +338,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)