You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
|
|
|
|
ASSERT_RE = re.compile(r'^\s*assert[^a-z0-9_:]')
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
skip = set([
|
|
|
|
'test/sanity/code-smell/%s' % os.path.basename(__file__),
|
|
|
|
'lib/ansible/module_utils/compat/ipaddress.py',
|
|
|
|
'lib/ansible/module_utils/distro/_distro.py',
|
|
|
|
])
|
|
|
|
|
|
|
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
|
|
|
if path in skip:
|
|
|
|
continue
|
|
|
|
|
|
|
|
with open(path, 'r') as f:
|
|
|
|
for i, line in enumerate(f.readlines()):
|
|
|
|
matches = ASSERT_RE.findall(line)
|
|
|
|
|
|
|
|
if matches:
|
|
|
|
lineno = i + 1
|
|
|
|
colno = line.index('assert') + 1
|
|
|
|
print('%s:%d:%d: raise AssertionError instead of: %s' % (path, lineno, colno, matches[0][colno - 1:]))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|