Backed out 2 changesets (bug 1696251) for causing js-bench-sm failures. CLOSED TREE

Backed out changeset 1c84c9a34575 (bug 1696251)
Backed out changeset e169193b7423 (bug 1696251)
This commit is contained in:
Butkovits Atila
2021-04-23 02:53:36 +03:00
parent 5ee600977c
commit 9cdb8e2e2a
58 changed files with 250 additions and 358 deletions

View File

@@ -61,14 +61,7 @@ class MachCommands(MachCommandBase):
)
@CommandArgument("args", nargs=argparse.REMAINDER)
def python(
self,
command_context,
no_virtualenv,
no_activate,
exec_file,
ipython,
requirements,
args,
self, no_virtualenv, no_activate, exec_file, ipython, requirements, args
):
# Avoid logging the command
self.log_manager.terminal_handler.setLevel(logging.CRITICAL)
@@ -172,7 +165,7 @@ class MachCommands(MachCommandBase):
"passed as it is to pytest"
),
)
def python_test(self, command_context, *args, **kwargs):
def python_test(self, *args, **kwargs):
try:
tempdir = str(tempfile.mkdtemp(suffix="-python-test"))
if six.PY2: