Example #1
0
 def get_keywords(self):
     # The docker config has the external hostname for the slider master,
     # which is the one we need to run stuff on clusters.
     return docker_config(self.conf)
Example #2
0
 def assert_installed(testcase, conf=get_config()):
     docker_conf = docker_config(conf)
     testcase.assert_path_exists(docker_conf[HOST],
                                 os.path.join(docker_conf[DIR], 'LICENSE'))
 def assert_slider_not_installed(self, conf):
     docker_conf = docker_config(conf)
     self.assert_path_removed(docker_conf[HOST], docker_conf[DIR])
 def assert_installed(testcase, conf=None):
     if not conf:
         conf = get_config(testcase.cluster)
     docker_conf = docker_config(conf)
     testcase.assert_path_exists(docker_conf[HOST],
                                 os.path.join(docker_conf[DIR], 'LICENSE'))
 def get_keywords(self):
     # The docker config has the external hostname for the slider master,
     # which is the one we need to run stuff on clusters.
     return docker_config(self.conf)
Example #6
0
 def assert_slider_not_installed(self, conf):
     docker_conf = docker_config(conf)
     self.assert_path_removed(docker_conf[HOST], docker_conf[DIR])
Example #7
0
 def assert_installed(testcase, conf=get_config()):
     docker_conf = docker_config(conf)
     testcase.assert_path_exists(docker_conf[HOST],
                                 os.path.join(docker_conf[DIR], 'LICENSE'))