diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 55526f18..b3d88b84 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -92,7 +92,9 @@ def start(self, timeout=None): def stop(self, timeout=None): from shutil import rmtree - self.controller.stop() + # Killing the process as waiting for it to gracefully shutdown + # timed out on team city, not sure why. + self.controller.stop(kill=True) rmtree(self.home) def machines(self):