Example #1
0
 def __init__(self,
              delegate,
              patch,
              should_run_tests=True,
              should_build=True):
     PatchAnalysisTask.__init__(self, delegate, patch)
     self._should_run_tests = should_run_tests
     self._should_build = should_build
Example #2
0
 def __init__(self, tool, patch, logger):
     PatchAnalysisTask.__init__(self, self, patch)
     self._port = tool.port_factory.get()
     self._tool = tool
     self._logger = logger
 def __init__(self, delegate, patch, should_run_tests=True):
     PatchAnalysisTask.__init__(self, delegate, patch)
     self._should_run_tests = should_run_tests
Example #4
0
 def __init__(self, tool, patch, logger):
     PatchAnalysisTask.__init__(self, self, patch)
     self._port = tool.port_factory.get()
     self._tool = tool
     self._logger = logger
Example #5
0
 def __init__(self, delegate, patch, run_tests=True):
     PatchAnalysisTask.__init__(self, delegate, patch)
     self._run_tests = run_tests