mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-06-14 13:28:11 +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:
@ -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()
|
||||
|
Reference in New Issue
Block a user