Improved help text for runtests's --parallel option

This commit is contained in:
Baptiste Mispelon 2015-11-27 18:44:11 +01:00
parent e03798a4ae
commit 81f5d63218
1 changed files with 2 additions and 2 deletions

View File

@ -409,8 +409,8 @@ if __name__ == "__main__":
help='Turn on the SQL query logger within tests.') help='Turn on the SQL query logger within tests.')
parser.add_argument( parser.add_argument(
'--parallel', dest='parallel', nargs='?', default=0, type=int, '--parallel', dest='parallel', nargs='?', default=0, type=int,
const=default_test_processes(), const=default_test_processes(), metavar='N',
help='Run tests in parallel processes.') help='Run tests using up to N parallel processes.')
options = parser.parse_args() options = parser.parse_args()