Skip to content

Commit

Permalink
Split groups with line seperator in inwer (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
MasloMaslane authored Jul 26, 2024
1 parent a2f41b2 commit 7d5799f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/sinol_make/commands/inwer/inwer_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,12 @@ def print_line_separator():
" | " + "Output")
print_line_separator()

last_group = None
for test_path in tests:
result = results[test_path]
if last_group is not None and last_group != result.test_group:
print_line_separator()
last_group = result.test_group
print(margin + result.test_name.ljust(column_lengths[0]) + " | ", end='')
print(result.test_group.ljust(column_lengths[1] - 1) + " | ", end='')

Expand Down

0 comments on commit 7d5799f

Please sign in to comment.