(cls)
| 14 | class PluginTest(BaseAPIIntegrationTest): |
| 15 | @classmethod |
| 16 | def teardown_class(cls): |
| 17 | client = cls.get_client_instance() |
| 18 | try: |
| 19 | client.remove_plugin(SSHFS, force=True) |
| 20 | except docker.errors.APIError: |
| 21 | pass |
| 22 | |
| 23 | def teardown_method(self, method): |
| 24 | client = self.get_client_instance() |
nothing calls this directly
no test coverage detected