예제 #1
0
파일: b2g.py 프로젝트: html-shell/mozbuild
 def install_cert_app(self):
     """Install the container app used to run the tests"""
     if fxos_appgen.is_installed("CertTest App"):
         self.executor.logger.info("CertTest App is already installed")
         return
     self.executor.logger.info("Installing CertTest App")
     app_path = os.path.join(here, "b2g_setup", "certtest_app.zip")
     fxos_appgen.install_app("CertTest App", app_path, marionette=self.marionette)
     self.executor.logger.debug("Install complete")
예제 #2
0
 def install_cert_app(self):
     """Install the container app used to run the tests"""
     if fxos_appgen.is_installed("CertTest App"):
         self.executor.logger.info("CertTest App is already installed")
         return
     self.executor.logger.info("Installing CertTest App")
     app_path = os.path.join(here, "b2g_setup", "certtest_app.zip")
     fxos_appgen.install_app("CertTest App", app_path, marionette=self.marionette)
     self.executor.logger.debug("Install complete")
예제 #3
0
def is_installed():
    return fxos_appgen.is_installed(name)
예제 #4
0
def is_installed():
    return fxos_appgen.is_installed(name)