f274cefa59
* Update empty-init test. * Update future-import-boilerplate test. * Update line-endings test. * Update metaclass-boilerplate test. * Update no-assert test. * Update no-basestring test. * Update no-dict-iteritems test. * Update no-dict-iterkeys test. * Update no-dict-itervalues test. * Update no-get-exception test. * Update no-main-display test. * Update no-smart-quotes test. * Update no-unicode-literals test. * Update no-unwanted-files test. * Update replace-urlopen test. * Update required-and-default-attributes test. * Update shebang test. * Update test-constraints test. * Update use-argspec-type-path test. * Update use-compat-six test.
24 lines
677 B
Python
Executable file
24 lines
677 B
Python
Executable file
#!/usr/bin/env python
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import re
|
|
import sys
|
|
|
|
ASSERT_RE = re.compile(r'^\s*assert[^a-z0-9_:]')
|
|
|
|
|
|
def main():
|
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
|
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()
|