mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-07 10:56:49 +00:00
misc/coding_tools/check-interfaces.py: reduce false-positives by adding Dummy* to the set of excluded classnames, and bench-* to the set of excluded basenames. refs #1474
This commit is contained in:
parent
417054aaba
commit
f1445ce0b2
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user