Skip to content

Commit 56ff585

Browse files
tboehler1roxell
authored andcommitted
test-runner.py: Fix wrapping output in help
Signed-off-by: Thomas Böhler <t.boehler@kunbus.com>
1 parent 4b0ab50 commit 56ff585

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

automated/utils/test-runner.py

+8-5
Original file line numberDiff line numberDiff line change
@@ -1315,11 +1315,14 @@ def get_args():
13151315
dest="cleanup",
13161316
default=False,
13171317
action="store_true",
1318-
help="If set to true, test-runner will remove all temporary files \
1319-
after running the test. It includes all collected logs and \
1320-
test results. This option should only be used if uploading \
1321-
results to SQUAD or LAVA. \
1322-
Default: false",
1318+
help=textwrap.dedent(
1319+
"""\
1320+
If set to true, test-runner will remove all temporary files after
1321+
running the test. It includes all collected logs and test results. This
1322+
option should only be used if uploading results to SQUAD or LAVA.
1323+
Default: false
1324+
"""
1325+
),
13231326
)
13241327

13251328
args = parser.parse_args()

0 commit comments

Comments
 (0)