Skip to content

Commit

Permalink
Split literal cmd over newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
RazvanLiviuVarzaru authored and fauust committed Jul 31, 2024
1 parent ba93c7d commit a7eb613
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion common_factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,17 @@ def addWinTests(
cmd = f"..\\mysql-test\\collections\\buildbot_suites.bat && cd .."
else:
suites = ",".join(mtr_suites)
cmd = f"perl mysql-test-run.pl --verbose-restart --force --testcase-timeout=8 --suite-timeout=600 --retry=3 --suites={suites} --parallel=%(kw:jobs)s %(kw:mtr_additional_args)s"
cmd = (
"perl mysql-test-run.pl"
" --verbose-restart"
" --force"
" --testcase-timeout=8"
" --suite-timeout=600"
" --retry=3"
" --suites={suites}"
" --parallel=%(kw:jobs)s"
" %(kw:mtr_additional_args)s"
).format(suites=suites)

if create_scripts:
factory.addStep(
Expand Down

0 comments on commit a7eb613

Please sign in to comment.