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.
2 parents 8ea201a + a446bfc commit 36ab789Copy full SHA for 36ab789
reframe/frontend/statistics.py
@@ -263,7 +263,8 @@ def print_failure_stats(self, printer):
263
partfullname = partition.fullname if partition else 'None'
264
environ_name = (check.current_environ.name
265
if check.current_environ else 'None')
266
- f = f'[{check.unique_name}, {environ_name}, {partfullname}]'
+ f = (f'[{check.display_name} (uid: {check.unique_name}), '
267
+ f'{environ_name}, {partfullname}]')
268
if tf.failed_stage not in failures:
269
failures[tf.failed_stage] = []
270
0 commit comments