Bug 1446471 - Remove unused --stop argument from mach python-test; r=nalexander

This argument does nothing. While that's arguably a bug, I have
no desire to fix it. So remove dead code.

MozReview-Commit-ID: 9tToF66I7HE

--HG--
extra : rebase_source : 2ea86681a102d3a82fc547f52e473f4a46a60467
This commit is contained in:
Gregory Szorc 2018-03-06 19:04:04 -08:00
parent 6e392d444d
commit e6191d0614

View File

@ -66,10 +66,6 @@ class MachCommands(MachCommandBase):
default=False,
action='store_true',
help='Verbose output.')
@CommandArgument('--stop',
default=False,
action='store_true',
help='Stop running tests after the first error or failure.')
@CommandArgument('-j', '--jobs',
default=1,
type=int,
@ -95,7 +91,6 @@ class MachCommands(MachCommandBase):
test_objects=None,
subsuite=None,
verbose=False,
stop=False,
jobs=1,
**kwargs):
self._activate_virtualenv()