mirror of https://github.com/ansible/ansible.git
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.
25 lines
677 B
Python
25 lines
677 B
Python
7 years ago
|
#!/usr/bin/env python
|
||
5 years ago
|
from __future__ import (absolute_import, division, print_function)
|
||
|
__metaclass__ = type
|
||
7 years ago
|
|
||
|
import re
|
||
|
import sys
|
||
|
|
||
6 years ago
|
ASSERT_RE = re.compile(r'^\s*assert[^a-z0-9_:]')
|
||
7 years ago
|
|
||
|
|
||
7 years ago
|
def main():
|
||
7 years ago
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
||
7 years ago
|
with open(path, 'r') as f:
|
||
|
for i, line in enumerate(f.readlines()):
|
||
|
matches = ASSERT_RE.findall(line)
|
||
|
|
||
|
if matches:
|
||
7 years ago
|
lineno = i + 1
|
||
|
colno = line.index('assert') + 1
|
||
|
print('%s:%d:%d: raise AssertionError instead of: %s' % (path, lineno, colno, matches[0][colno - 1:]))
|
||
7 years ago
|
|
||
|
|
||
7 years ago
|
if __name__ == '__main__':
|
||
|
main()
|