diff --git a/reframe/frontend/statistics.py b/reframe/frontend/statistics.py index 6be05d9832..e3e9e8f17f 100644 --- a/reframe/frontend/statistics.py +++ b/reframe/frontend/statistics.py @@ -84,7 +84,9 @@ def failure_report(self): report.append(' * System partition: %s' % partname) report.append(' * Environment: %s' % environ_name) report.append(' * Stage directory: %s' % check.stagedir) - + report.append(' * Node list: %s' % + (','.join(check.job.nodelist) + if check.job and check.job.nodelist else '')) job_type = 'local' if check.is_local() else 'batch job' jobid = check.job.jobid if check.job else -1 report.append(' * Job type: %s (id=%s)' % (job_type, jobid))