From af000a8ac6c04f39163609a301057a8222f24b60 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 14 Oct 2015 07:45:08 +0200 Subject: [PATCH] Wait longer for process to start. --- tests/integration/testprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/testprocess.py b/tests/integration/testprocess.py index 984d0ec2b..799682543 100644 --- a/tests/integration/testprocess.py +++ b/tests/integration/testprocess.py @@ -113,7 +113,7 @@ class Process(QObject): def start(self): """Start the process and wait until it started.""" - with self._wait_signal(self.ready): + with self._wait_signal(self.ready, timeout=20000): self._start() def _start(self):