From eb352e2876264385c824909b900076a6b11075e7 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Wed, 23 Mar 2016 11:42:00 -0500 Subject: [PATCH] Ignore the .github directory --- ansible_testing/modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible_testing/modules.py b/ansible_testing/modules.py index ecece1ef13..b86aaf6753 100644 --- a/ansible_testing/modules.py +++ b/ansible_testing/modules.py @@ -25,7 +25,7 @@ from utils import CaptureStd, find_globals import yaml -BLACKLIST_DIRS = frozenset(('.git', 'test')) +BLACKLIST_DIRS = frozenset(('.git', 'test', '.github')) INDENT_REGEX = re.compile(r'([\t]*)') BASIC_RESERVED = frozenset((r for r in dir(module_utils_basic) if r[0] != '_'))