(self)
| 84 | self.install_required_packages(client) |
| 85 | |
| 86 | def begin(self): |
| 87 | super(S3tests_java, self).begin() |
| 88 | log.debug('S3 Tests Java: BEGIN') |
| 89 | for (host, roles) in self.ctx.cluster.remotes.items(): |
| 90 | log.debug( |
| 91 | 'S3 Tests Java: Cluster config is: {cfg}'.format(cfg=roles)) |
| 92 | log.debug('S3 Tests Java: Host is: {host}'.format(host=host)) |
| 93 | self.create_users() |
| 94 | self.run_tests() |
| 95 | |
| 96 | def end(self): |
| 97 | super(S3tests_java, self).end() |
nothing calls this directly
no test coverage detected