Skip to content

Commit

Permalink
Justify right column to left side
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkuzmik committed Sep 3, 2024
1 parent a673425 commit a6504ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/python/src/opik/plugins/pytest/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def print(reports: List[pytest.TestReport]) -> None:

table = rich.table.Table(show_header=False, show_lines=False, padding=(0, 1))
table.add_column(justify="left")
table.add_column(justify="right")
table.add_column(justify="left")

table.add_row("Passed:", f"{passed_tests}", style="green")
table.add_row("Failed:", f"{failed_tests}", style="red")
Expand Down

0 comments on commit a6504ac

Please sign in to comment.