From fad469efcaa8c52d9808b45643e7010027270730 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Thu, 13 Jul 2017 09:53:05 -0700 Subject: [PATCH] Ignore platform_agnostic.yaml in ansible-test. --- 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 5cc72b0c23..88e1f46362 100644 --- a/test/runner/lib/classification.py +++ b/test/runner/lib/classification.py @@ -373,6 +373,9 @@ class PathMapper(object): if self.prefixes.get(name) == 'network' and ext == '.yaml': return minimal # network integration test playbooks are not used by ansible-test + if filename == 'platform_agnostic.yaml': + return minimal # network integration test playbook not used by ansible-test + return { 'integration': 'all', 'windows-integration': 'all',