report all attributes that do not match exactly
Previous versions of the loop stopped looking at exact-match attributes when one failed. By removing the break statement we can report all match failures in a single run of the test job. Change-Id: I419f3a611bfc6cc17272382e1b4f00534a5eb5ae Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
parent
f813e3a347
commit
de59c94255
@ -95,7 +95,6 @@ def _is_requirement_in_global_reqs(req, global_reqs):
|
||||
print('{} {!r}: {!r} does not match {!r}'.format(
|
||||
req, aname, rval, r2val))
|
||||
matching = False
|
||||
break
|
||||
if not matching:
|
||||
continue
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user