From 54118d45daf0aa9d62cd5ee7790335e9529df38f Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Fri, 15 Jul 2016 13:03:45 -0700 Subject: [PATCH] Add blacklist/ignore for .idea dir. --- 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 4cbe8353967..fb7ad0aaca1 100644 --- a/ansible_testing/modules.py +++ b/ansible_testing/modules.py @@ -43,7 +43,7 @@ from utils import CaptureStd import yaml -BLACKLIST_DIRS = frozenset(('.git', 'test', '.github')) +BLACKLIST_DIRS = frozenset(('.git', 'test', '.github', '.idea')) INDENT_REGEX = re.compile(r'([\t]*)') BLACKLIST_IMPORTS = { 'requests': {