test-runner.py: Fix wrapping output in help
Signed-off-by: Thomas Böhler <t.boehler@kunbus.com>
diff --git a/automated/utils/test-runner.py b/automated/utils/test-runner.py
index f865313..7616bf1 100755
--- a/automated/utils/test-runner.py
+++ b/automated/utils/test-runner.py
@@ -1315,11 +1315,14 @@
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()