@@ -132,7 +132,9 @@ def parse(
132
132
summary = self .testcase_summary (xml_suite , xml_case )[:255 ]
133
133
134
134
test_case , _ = self .backend .test_case_get_or_create (summary )
135
- self .backend .add_test_case_to_plan (test_case ["id" ], self .backend .plan_id )
135
+ self .backend .add_test_case_to_plan (
136
+ test_case ["id" ], self .backend .plan_id
137
+ )
136
138
137
139
comment = self .backend .created_by_text
138
140
if not xml_case .result :
@@ -164,7 +166,9 @@ def parse(
164
166
test_case ["id" ],
165
167
self .backend .run_id ,
166
168
):
167
- start_date , stop_date = self .testexecution_timestamps (xml_suite , xml_case )
169
+ start_date , stop_date = self .testexecution_timestamps (
170
+ xml_suite , xml_case
171
+ )
168
172
self .backend .update_test_execution (
169
173
execution ["id" ],
170
174
status_id ,
@@ -198,7 +202,9 @@ def main(argv):
198
202
help = "Template summary from testcase, eg %(default)s." ,
199
203
default = DEFAULT_TEMPLATE ,
200
204
)
201
- parser .add_argument ("filename.xml" , type = str , nargs = "+" , help = "XML file(s) to parse" )
205
+ parser .add_argument (
206
+ "filename.xml" , type = str , nargs = "+" , help = "XML file(s) to parse"
207
+ )
202
208
203
209
args = parser .parse_args (argv [1 :])
204
210
0 commit comments