Skip sanity tests that don't apply to bundled code

* add distro to pep8 skip tests
* Skip no-assert test for distro
* Add bundled distro to the empty-init skip list
This commit is contained in:
Adrian Likins 2018-02-21 12:31:41 -05:00 committed by Toshio Kuratomi
parent e872811b8d
commit be65d9cfe5
3 changed files with 7 additions and 1 deletions

View file

@ -9,9 +9,11 @@ def main():
'test/sanity/code-smell/%s' % os.path.basename(__file__),
# facts is grandfathered in but will break namespacing
# the only way to fix it is to deprecate and eventually remove it
# six will break namespacing but because it is bundled we should not be overriding it
# six and distro will break namespacing but because it is bundled we should not be
# overriding it
'lib/ansible/module_utils/facts/__init__.py',
'lib/ansible/module_utils/six/__init__.py',
'lib/ansible/module_utils/distro/__init__.py',
])
for path in sys.argv[1:] or sys.stdin.read().splitlines():