]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blobdiff - misc/coding_tools/check-interfaces.py
misc/coding_tools/check-interfaces.py: reduce false-positives by adding Dummy* to...
[tahoe-lafs/tahoe-lafs.git] / misc / coding_tools / check-interfaces.py
index 2a22cffc984363fc4fe0a818267fe27909c39f1b..c5dbf246992b6a29903b4b3850703bcdbc447ed7 100644 (file)
@@ -12,8 +12,8 @@ from zope.interface.advice import addClassAdvisor
 
 
 interesting_modules = re.compile(r'(allmydata)|(foolscap)\..*')
-excluded_classnames = re.compile(r'(_)|(Mock)|(Fake).*')
-excluded_file_basenames = re.compile(r'check_.*')
+excluded_classnames = re.compile(r'(_)|(Mock)|(Fake)|(Dummy).*')
+excluded_file_basenames = re.compile(r'(check)|(bench)_.*')
 
 
 other_modules_with_violations = set()