From de59c94255edff6454671ff924bf5e86aa6e46f3 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Tue, 3 Apr 2018 09:56:59 -0400 Subject: [PATCH] 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 --- openstack_requirements/check.py | 1 - 1 file changed, 1 deletion(-) diff --git a/openstack_requirements/check.py b/openstack_requirements/check.py index c5d6c29e73..35a81cf1cd 100644 --- a/openstack_requirements/check.py +++ b/openstack_requirements/check.py @@ -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