mirror of https://github.com/zulip/zulip.git
testing: Control parallelism through cmd args.
This commit is contained in:
parent
9707c74f33
commit
2f243d8808
|
@ -130,6 +130,21 @@ if __name__ == "__main__":
|
||||||
parser.add_option('--verbose-coverage', dest='verbose_coverage',
|
parser.add_option('--verbose-coverage', dest='verbose_coverage',
|
||||||
action="store_true",
|
action="store_true",
|
||||||
default=False, help='Enable verbose print of coverage report.')
|
default=False, help='Enable verbose print of coverage report.')
|
||||||
|
|
||||||
|
def allow_positive_int(option, opt_str, value, parser):
|
||||||
|
# type: (optparse.Option, str, int, optparse.OptionParser) -> None
|
||||||
|
if value < 1:
|
||||||
|
raise optparse.OptionValueError(
|
||||||
|
"option {}: Only positive integers are allowed.".format(opt_str))
|
||||||
|
setattr(parser.values, option.dest, value)
|
||||||
|
|
||||||
|
parser.add_option('--processes', dest='processes',
|
||||||
|
type="int",
|
||||||
|
callback=allow_positive_int,
|
||||||
|
action='callback',
|
||||||
|
default=1,
|
||||||
|
help='Specify the number of processes to run the '
|
||||||
|
'tests in. Default is 1.')
|
||||||
parser.add_option('--profile', dest='profile',
|
parser.add_option('--profile', dest='profile',
|
||||||
action="store_true",
|
action="store_true",
|
||||||
default=False, help='Profile test runtime.')
|
default=False, help='Profile test runtime.')
|
||||||
|
@ -243,17 +258,16 @@ if __name__ == "__main__":
|
||||||
subprocess.call(generate_fixtures_command)
|
subprocess.call(generate_fixtures_command)
|
||||||
|
|
||||||
TestRunner = get_runner(settings)
|
TestRunner = get_runner(settings)
|
||||||
"""
|
parallel = options.processes
|
||||||
- To run tests in serial, set parallel=1. This is the default
|
|
||||||
currently because parallel mode is not stable at the moment.
|
if parallel > 1:
|
||||||
- To change the number of parallel processes, you can either:
|
print("-- Running tests in parallel mode with {} "
|
||||||
* Use 'DJANGO_TEST_PROCESSES' environment variable.
|
"processes.".format(parallel))
|
||||||
* Set parallel>1.
|
else:
|
||||||
- For automatic determination of the number of processes,
|
print("-- Running tests in serial mode.")
|
||||||
set parallel=django.test.runner.default_test_processes().
|
|
||||||
"""
|
|
||||||
test_runner = TestRunner(failfast=options.fatal_errors, verbosity=2,
|
test_runner = TestRunner(failfast=options.fatal_errors, verbosity=2,
|
||||||
parallel=1, keepdb=True)
|
parallel=parallel, keepdb=True)
|
||||||
failures = test_runner.run_tests(suites, full_suite=full_suite)
|
failures = test_runner.run_tests(suites, full_suite=full_suite)
|
||||||
|
|
||||||
templates_not_rendered = test_runner.get_shallow_tested_templates()
|
templates_not_rendered = test_runner.get_shallow_tested_templates()
|
||||||
|
|
Loading…
Reference in New Issue