From bd8ea89b1b983e78c3a16e6be46ea881e6cf89fd Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Thu, 6 Jul 2017 11:32:31 -0700 Subject: [PATCH] Improve handling of network test changes. --- test/runner/lib/classification.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/runner/lib/classification.py b/test/runner/lib/classification.py index d639fb65b7a..f94ce79eb4d 100644 --- a/test/runner/lib/classification.py +++ b/test/runner/lib/classification.py @@ -352,6 +352,9 @@ class PathMapper(object): } if path.startswith('test/integration/'): + if self.prefixes.get(name) == 'network' and ext == '.yaml': + return minimal # network integration test playbooks are not used by ansible-test + return { 'integration': 'all', 'windows-integration': 'all',