From 5d342050a6f7fcac79f46cafc79a6ca2b528e1fd Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Wed, 6 Jul 2016 21:50:56 -0700 Subject: [PATCH] Add shippable.yml to blacklist. (#32) --- ansible_testing/modules.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible_testing/modules.py b/ansible_testing/modules.py index 3eb711b228b..4cbe8353967 100644 --- a/ansible_testing/modules.py +++ b/ansible_testing/modules.py @@ -123,6 +123,7 @@ class Validator(object): class ModuleValidator(Validator): BLACKLIST_PATTERNS = ('.git*', '*.pyc', '*.pyo', '.*', '*.md', '*.txt') BLACKLIST_FILES = frozenset(('.git', '.gitignore', '.travis.yml', + 'shippable.yml', '.gitattributes', '.gitmodules', 'COPYING', '__init__.py', 'VERSION', 'test-docs.sh')) BLACKLIST = BLACKLIST_FILES.union(BLACKLIST_MODULES)