(self)
| 35 | ) |
| 36 | |
| 37 | def shutdown(self): |
| 38 | if not self.container is None: |
| 39 | self.container.stop() |
| 40 | self.container.remove() |
| 41 | self.container = None |
| 42 | |
| 43 | # Execute a command under `sources` that depends on the given script. By default it runs the given script. |
| 44 | def execute(self, script_filename=None, command=None, timeout=10): |
no outgoing calls