test-backend: Respect --parallel=N when running specific tests.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2022-04-26 17:51:14 -07:00 committed by Tim Abbott
parent 33c5bc5b4d
commit bd072d79a4
1 changed files with 5 additions and 5 deletions

View File

@ -241,7 +241,7 @@ def main() -> None:
"--parallel",
dest="processes",
type=int,
default=default_parallel,
default=None,
help="Specify the number of processes to run the "
"tests in. Default is the number of logical CPUs",
)
@ -283,10 +283,9 @@ def main() -> None:
os.environ["BAN_CONSOLE_OUTPUT"] = "1"
args = options.args
parallel = options.processes
include_webhooks = options.coverage or options.include_webhooks
if parallel < 1:
if options.processes is not None and options.processes < 1:
raise argparse.ArgumentTypeError("option processes: Only positive integers are allowed.")
zerver_test_dir = "zerver/tests/"
@ -297,14 +296,14 @@ def main() -> None:
# !fatal_errors, so that we don't end up removing tests from
# the list that weren't run.
if options.rerun:
parallel = 1
default_parallel = 1
options.fatal_errors = False
failed_tests = get_failed_tests()
if failed_tests:
args = failed_tests
if len(args) > 0:
# If we passed a specific set of tests, run in serial mode.
parallel = 1
default_parallel = 1
# to transform forward slashes '/' present in the argument into dots '.'
for i, suite in enumerate(args):
@ -406,6 +405,7 @@ def main() -> None:
TestRunner = get_runner(settings)
parallel = default_parallel if options.processes is None else options.processes
if parallel > 1:
print(f"-- Running tests in parallel mode with {parallel} processes.", flush=True)
else: