예제 #1
0
 def _python_build(self, targets):
   try:
     executor = PythonBuilder(self.error, self.root_dir)
     return executor.build(targets, self.build_args)
   except:
     self.error("Problem executing PythonBuilder for targets %s: %s" % (targets,
                                                                        traceback.format_exc()))
예제 #2
0
파일: build.py 프로젝트: adamsxu/commons
 def _python_build(self, targets):
   try:
     executor = PythonBuilder(self.error, self.root_dir)
     return executor.build(targets, self.build_args)
   except:
     self.error("Problem executing PythonBuilder for targets %s: %s" % (targets,
                                                                        traceback.format_exc()))
예제 #3
0
 def _python_build(self, targets):
   try:
     executor = PythonBuilder(self.run_tracker, self.root_dir)
     return executor.build(
       targets,
       self.build_args,
       interpreter=self.interpreter,
       conn_timeout=self.options.conn_timeout)
   except:
     self.error("Problem executing PythonBuilder for targets %s: %s" % (targets,
                                                                        traceback.format_exc()))