Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion reframe/frontend/statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 '<None>'))
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))
Expand Down