(self, args)
| 190 | # Executes a native executable server process |
| 191 | class BackgroundServerProcess: |
| 192 | def __init__(self, args): |
| 193 | self.process = None |
| 194 | self.args = args |
| 195 | |
| 196 | def __enter__(self): |
| 197 | print('Running background server: ' + str(self.args)) |
nothing calls this directly
no outgoing calls
no test coverage detected