File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -120,11 +120,12 @@ def bugzilla_qe_verify(self):
120
120
# iterate over them
121
121
if entry [2 ]:
122
122
for sub_entry in entry [2 ]:
123
- row = {"bug_id" : bug_id , "description" : description ,
124
- ** sub_entry , "severity" : severity ,
125
- "priority" : priority ,
126
- "bug_status" : status , "resolution" : resolution }
127
- rows .append (row )
123
+ if sub_entry ['name' ] == 'qe-verify' and sub_entry ['status' ] == '+' : # noqa
124
+ row = {"bug_id" : bug_id , "description" : description ,
125
+ ** sub_entry , "severity" : severity ,
126
+ "priority" : priority ,
127
+ "bug_status" : status , "resolution" : resolution }
128
+ rows .append (row )
128
129
else :
129
130
# If no sub-entry, just add the bug_id description
130
131
row = {"bug_id" : bug_id , "description" : description ,
You can’t perform that action at this time.
0 commit comments