Skip to content

Commit

Permalink
test-runner.py: Fix wrapping output in help
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Böhler <[email protected]>
  • Loading branch information
tboehler1 committed Jun 13, 2024
1 parent d140c93 commit faffb68
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions automated/utils/test-runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -1315,11 +1315,14 @@ def get_args():
dest="cleanup",
default=False,
action="store_true",
help="If set to true, test-runner will remove all temporary files \
after running the test. It includes all collected logs and \
test results. This option should only be used if uploading \
results to SQUAD or LAVA. \
Default: false",
help=textwrap.dedent(
"""\
If set to true, test-runner will remove all temporary files after
running the test. It includes all collected logs and test results. This
option should only be used if uploading results to SQUAD or LAVA.
Default: false
"""
),
)

args = parser.parse_args()
Expand Down

0 comments on commit faffb68

Please sign in to comment.