From b3179538efa7256043fae6f7be41b72a9e7ab229 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Mon, 15 Apr 2019 15:52:32 +0300 Subject: [PATCH] Tests: wait more time on Unit closing. --- test/unit/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/main.py b/test/unit/main.py index bd91026f..b2fa2950 100644 --- a/test/unit/main.py +++ b/test/unit/main.py @@ -219,7 +219,7 @@ class TestUnit(unittest.TestCase): subprocess.call(['kill', '-s', 'QUIT', pid]) - for i in range(50): + for i in range(150): if not os.path.exists(self.testdir + '/unit.pid'): break time.sleep(0.1)