From d53c4f270243594a5f5c78772f330319f49f5528 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 1 Dec 2015 08:10:44 +0100 Subject: [PATCH] tests: Increase test_late_message timeout. This was failing on Travis on OS X, and waiting 1s for process start and 0.5s sleep seems a bit tight. --- tests/integration/test_testprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_testprocess.py b/tests/integration/test_testprocess.py index 830f0ff41..9c10923af 100644 --- a/tests/integration/test_testprocess.py +++ b/tests/integration/test_testprocess.py @@ -163,7 +163,7 @@ class TestEnsureNotLogged: pyproc.code = "time.sleep(0.5); print('blacklisted')" pyproc.start() with pytest.raises(testprocess.BlacklistedMessageError): - pyproc.ensure_not_logged(data='blacklisted', delay=1000) + pyproc.ensure_not_logged(data='blacklisted', delay=5000) def test_no_matching_message(self, pyproc): pyproc.code = "print('blacklisted... nope!')"