Explorar o código

Modified test to be less prone to timeouts

Marta Marczykowska-Górecka %!s(int64=3) %!d(string=hai) anos
pai
achega
b5daca5d57
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      qubesmanager/tests/test_qube_manager.py

+ 3 - 0
qubesmanager/tests/test_qube_manager.py

@@ -1187,10 +1187,13 @@ class QubeManagerTest(unittest.TestCase):
 
         future1 = asyncio.ensure_future(self.dispatcher.listen_for_events())
         self.loop.run_until_complete(asyncio.sleep(0))
+
         future2 = asyncio.create_subprocess_exec(*command,
                                                  stdout=subprocess.DEVNULL,
                                                  stderr=subprocess.DEVNULL)
 
+        future2 = self.loop.run_until_complete(future2).wait()
+
         if additional_timeout:
             (done, pending) = self.loop.run_until_complete(
                 asyncio.wait({future1, future2}, timeout=timeout,