Skip to content

Commit a82b107

Browse files
authored
Merge pull request #3487 from vkarak/bugfix/system-partition-failure-info
[bugfix] Include (again) partition name in test failure info
2 parents 04c0be4 + a2e2b21 commit a82b107

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

reframe/frontend/printer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ def _print_failure_info(rec, runid, total_runs):
122122
self.info(f"FAILURE INFO for {rec['display_name']} "
123123
f"(run: {runid}/{total_runs})")
124124
self.info(f" * Description: {rec['descr']}")
125-
self.info(f" * System partition: {rec['system']}")
125+
self.info(" * System partition: "
126+
f"{rec['system']}:{rec['partition']}")
126127
self.info(f" * Environment: {rec['environ']}")
127128
self.info(f" * Test file: {rec['filename']}")
128129
self.info(f" * Stage directory: {rec['stagedir']}")

0 commit comments

Comments
 (0)