Add shippable.yml to blacklist. (#32)

pull/4420/head
Matt Clay 2016-07-06 21:50:56 -07:00 committed by John Barker
parent 247066e6a8
commit 5d342050a6
1 changed files with 1 additions and 0 deletions

View File

@ -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)