From e9416f5ebdced75f9463073a25d2b999969124a4 Mon Sep 17 00:00:00 2001 From: Folker Bernitt Date: Thu, 30 Jul 2015 11:57:56 +0200 Subject: Start events server before running functional tests. - Issue #420 - Should create server.key before behave tests - Revert "move events diabling to AppTestClient for functional tests" --- service/test/functional/features/environment.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'service/test/functional/features/environment.py') diff --git a/service/test/functional/features/environment.py b/service/test/functional/features/environment.py index e598ee67..07b733de 100644 --- a/service/test/functional/features/environment.py +++ b/service/test/functional/features/environment.py @@ -17,6 +17,7 @@ import logging import uuid from crochet import setup, wait_for +from leap.common.events.server import ensure_server from test.support.dispatcher.proxy import Proxy from test.support.integration import AppTestClient from selenium import webdriver @@ -28,6 +29,7 @@ setup() @wait_for(timeout=5.0) def start_app_test_client(client): + ensure_server() return client.start_client() -- cgit v1.2.3