Write s3 tests java config file on the remote node.
(self, cfg_dict, client)
| 253 | sect=section, user=user)) |
| 254 | |
| 255 | def _write_cfg_file(self, cfg_dict, client): |
| 256 | """ |
| 257 | Write s3 tests java config file on the remote node. |
| 258 | """ |
| 259 | testdir = teuthology.get_testdir(self.ctx) |
| 260 | (remote,) = self.ctx.cluster.only(client).remotes.keys() |
| 261 | data = yaml.safe_dump(cfg_dict, default_flow_style=False) |
| 262 | path = testdir + '/archive/s3-tests-java.' + client + '.conf' |
| 263 | remote.write_file(path, data) |
| 264 | |
| 265 | def _set_cfg_entry(self, cfg_dict, key, value): |
| 266 | if not (key in cfg_dict): |
no test coverage detected