Skip to content

Commit 17e17f5

Browse files
committed
Use always | to join unique values in column aggregations
1 parent 167ef86 commit 17e17f5

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

reframe/frontend/reporting/__init__.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -647,12 +647,10 @@ def _group_testcases(testcases, groups, columns):
647647
def _aggregate_perf(grouped_testcases, aggr_fn, cols):
648648
# Update delimiter for joining unique values based on the table format
649649
table_foramt = runtime().get_option('general/0/table_format')
650-
if table_foramt == 'csv':
651-
delim = '|'
652-
elif table_foramt == 'plain':
653-
delim = ','
654-
else:
650+
if table_foramt == 'pretty':
655651
delim = '\n'
652+
else:
653+
delim = '|'
656654

657655
other_aggr = Aggregator.create('join_uniq', delim)
658656
count_aggr = Aggregator.create('count')

0 commit comments

Comments
 (0)