summaryrefslogtreecommitdiff
path: root/service/test/functional/features/environment.py
diff options
context:
space:
mode:
authorFolker Bernitt <fbernitt@thoughtworks.com>2015-07-30 11:57:56 +0200
committerFolker Bernitt <fbernitt@thoughtworks.com>2015-08-11 17:00:30 +0200
commite9416f5ebdced75f9463073a25d2b999969124a4 (patch)
tree64c55ff059c997fb59d9ada7adca50a90356321a /service/test/functional/features/environment.py
parent5d45904c0d26045bc5174210577527506997b16b (diff)
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"
Diffstat (limited to 'service/test/functional/features/environment.py')
-rw-r--r--service/test/functional/features/environment.py2
1 files changed, 2 insertions, 0 deletions
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()