We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc59cb9 commit a6e4241Copy full SHA for a6e4241
reframe/frontend/statistics.py
@@ -281,6 +281,16 @@ def print_failure_stats(self, printer):
281
for f in l[1:]:
282
stats_body.append(row_format.format('', '', str(f)))
283
284
+ for p, l in failures.items():
285
+ stats_body.append(stats_hline)
286
+ stats_body.append('Rerun the failed tests with:')
287
+ for f in l:
288
+ failed_list = f.split(',')
289
+ failed_name = failed_list[0][1:]
290
+ failed_env = failed_list[1].strip()
291
+ failed_system = failed_list[2][:-1].strip()
292
+ stats_body.append(f' -n {failed_name} -p {failed_env} --system {failed_system} -r')
293
+
294
if stats_body:
295
for line in (stats_start, stats_title, *stats_body, stats_end):
296
printer.info(line)
0 commit comments