(self, method)
| 21 | pass |
| 22 | |
| 23 | def teardown_method(self, method): |
| 24 | client = self.get_client_instance() |
| 25 | try: |
| 26 | client.disable_plugin(SSHFS, True) |
| 27 | except docker.errors.APIError: |
| 28 | pass |
| 29 | |
| 30 | for p in self.tmp_plugins: |
| 31 | try: |
| 32 | client.remove_plugin(p) |
| 33 | except docker.errors.APIError: |
| 34 | pass |
| 35 | |
| 36 | client.close() |
| 37 | |
| 38 | def ensure_plugin_installed(self, plugin_name): |
| 39 | try: |
nothing calls this directly
no test coverage detected