Backed out changeset d75218b99a04 (bug 1473727) for build bustages on a CLOSED TREE

This commit is contained in:
Andreea Pavel
2018-07-10 18:17:47 +03:00
parent 644538142d
commit 42453fcd8b
3 changed files with 18 additions and 35 deletions

View File

@@ -68,7 +68,6 @@ class MachCommands(MachCommandBase):
action='store_true',
help='Verbose output.')
@CommandArgument('--python',
default='2.7',
help='Version of Python for Pipenv to use. When given a '
'Python version, Pipenv will automatically scan your '
'system for a Python that matches that given version.')
@@ -100,7 +99,8 @@ class MachCommands(MachCommandBase):
jobs=1,
python=None,
**kwargs):
self.activate_pipenv(pipfile=None, populate=True, python=python)
python = python or self.virtualenv_manager.python_path
self.activate_pipenv(pipfile=None, args=['--python', python], populate=True)
if test_objects is None:
from moztest.resolve import TestResolver