|
|
@ -1755,9 +1755,9 @@ class Britney(object):
|
|
|
|
for policy in self.policies:
|
|
|
|
for policy in self.policies:
|
|
|
|
if suite in policy.applicable_suites:
|
|
|
|
if suite in policy.applicable_suites:
|
|
|
|
v = policy.apply_policy(policy_info, suite, src, source_t, source_u, excuse)
|
|
|
|
v = policy.apply_policy(policy_info, suite, src, source_t, source_u, excuse)
|
|
|
|
if v.value > policy_verdict.value:
|
|
|
|
if v > policy_verdict:
|
|
|
|
policy_verdict = v
|
|
|
|
policy_verdict = v
|
|
|
|
if policy_verdict.is_rejected:
|
|
|
|
if policy_verdict in [PolicyVerdict.REJECTED_PERMANENTLY, PolicyVerdict.REJECTED_TEMPORARILY]:
|
|
|
|
excuse.is_valid = False
|
|
|
|
excuse.is_valid = False
|
|
|
|
|
|
|
|
|
|
|
|
if suite in ('pu', 'tpu') and source_t:
|
|
|
|
if suite in ('pu', 'tpu') and source_t:
|
|
|
|