From 88e599ec85e5f1dc8223b6c518aa917202ae6ec4 Mon Sep 17 00:00:00 2001 From: Bruno Wagner Date: Mon, 14 Sep 2015 14:53:51 -0300 Subject: Added sleep after adding mail so it is properly indexed --- service/test/functional/features/steps/data_setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/service/test/functional/features/steps/data_setup.py b/service/test/functional/features/steps/data_setup.py index 8648732e..ee925eb5 100644 --- a/service/test/functional/features/steps/data_setup.py +++ b/service/test/functional/features/steps/data_setup.py @@ -13,6 +13,7 @@ # # You should have received a copy of the GNU Affero General Public License # along with Pixelated. If not, see . +from time import sleep from uuid import uuid4 from test.support.integration import MailBuilder from behave import given @@ -24,5 +25,6 @@ def add_mail_impl(context): input_mail = MailBuilder().with_subject(subject).build_input_mail() context.client.add_mail_to_inbox(input_mail) + sleep(5) # we need to wait for the mail to be indexed (3 secs at least) context.last_subject = subject -- cgit v1.2.3