Removed some leftover trailing commas.
This commit is contained in:
parent
e972a7d03d
commit
d7db417f1a
|
@ -33,20 +33,20 @@ class Command(BaseCommand):
|
||||||
help='Module paths to test; can be modulename, modulename.TestCase or modulename.TestCase.test_method')
|
help='Module paths to test; can be modulename, modulename.TestCase or modulename.TestCase.test_method')
|
||||||
parser.add_argument('--noinput', '--no-input',
|
parser.add_argument('--noinput', '--no-input',
|
||||||
action='store_false', dest='interactive', default=True,
|
action='store_false', dest='interactive', default=True,
|
||||||
help='Tells Django to NOT prompt the user for input of any kind.'),
|
help='Tells Django to NOT prompt the user for input of any kind.')
|
||||||
parser.add_argument('--failfast',
|
parser.add_argument('--failfast',
|
||||||
action='store_true', dest='failfast', default=False,
|
action='store_true', dest='failfast', default=False,
|
||||||
help='Tells Django to stop running the test suite after first '
|
help='Tells Django to stop running the test suite after first '
|
||||||
'failed test.'),
|
'failed test.')
|
||||||
parser.add_argument('--testrunner',
|
parser.add_argument('--testrunner',
|
||||||
action='store', dest='testrunner',
|
action='store', dest='testrunner',
|
||||||
help='Tells Django to use specified test runner class instead of '
|
help='Tells Django to use specified test runner class instead of '
|
||||||
'the one specified by the TEST_RUNNER setting.'),
|
'the one specified by the TEST_RUNNER setting.')
|
||||||
parser.add_argument('--liveserver',
|
parser.add_argument('--liveserver',
|
||||||
action='store', dest='liveserver', default=None,
|
action='store', dest='liveserver', default=None,
|
||||||
help='Overrides the default address where the live server (used '
|
help='Overrides the default address where the live server (used '
|
||||||
'with LiveServerTestCase) is expected to run from. The '
|
'with LiveServerTestCase) is expected to run from. The '
|
||||||
'default value is localhost:8081-8179.'),
|
'default value is localhost:8081-8179.')
|
||||||
|
|
||||||
test_runner_class = get_runner(settings, self.test_runner)
|
test_runner_class = get_runner(settings, self.test_runner)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue