[generator][python] Fixed mwm checks code.

This commit is contained in:
Maksim Andrianov 2020-08-03 14:47:27 +03:00 committed by Tatiana Yan
parent 6c84a5a3b1
commit f24c275597
2 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ def get_args():
def main():
args = get_args()
checks = {MwmsChecks[c] for c in args.checks} if args.checks is not None else None
checks = {MwmsChecks[c] for c in args.checks} if args.checks else None
s = get_mwm_check_sets_and_filters(
args.old, args.new, checks, categories_path=args.categories
)

View file

@ -88,7 +88,7 @@ def get_mwm_check_sets_and_filters(
old_path: str, new_path: str, checks: Set[MwmsChecks] = None, **kwargs
) -> Mapping[check.Check, Callable]:
def need_add(t: MwmsChecks):
return checks is not None and t in checks
return checks is None or t in checks
m = {get_sections_existence_check_set(old_path, new_path): None}
@ -104,7 +104,7 @@ def get_mwm_check_sets_and_filters(
thresholds = make_tmap(low=(2 * mb, 10), medium=(mb, 5), hard=(0.5 * mb, 2))
m[c] = make_default_filter(thresholds)
if need_add(MwmsChecks.type):
if need_add(MwmsChecks.types):
c = get_mwm_types_check_set(old_path, new_path)
thresholds = make_tmap(low=(500, 30), medium=(100, 20), hard=(100, 10))
m[c] = make_default_filter(thresholds)