(cls)
| 336 | |
| 337 | @classmethod |
| 338 | def tearDownClass(cls): |
| 339 | super().tearDownClass() |
| 340 | for cluster in cls._clusters: |
| 341 | if cluster is not _default_cluster: |
| 342 | cluster.stop() |
| 343 | cluster.destroy() |
| 344 | cls._clusters = [] |
| 345 | |
| 346 | @classmethod |
| 347 | def get_connection_spec(cls, kwargs={}): |
nothing calls this directly
no test coverage detected