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
This commit is contained in:
Gregory Szorc
2018-03-06 19:04:04 -08:00
parent 3a4729b3d7
commit 2f953786fe

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()