From 3afd9791ef3e2472987cdabb54ef5f27a062469c Mon Sep 17 00:00:00 2001 From: Jamie Lennox Date: Thu, 30 May 2013 17:48:04 +1000 Subject: Isolate eventlet code into environment. The environment module will be configured once, during code initialization. Subsequently all other possibly-evented modules will retrieve from environment and transparently obtain either the eventlet or standard library modules. If eventlet, httplib, subprocess or other environment dependant module is referenced outside of the environment module it should be considered a bug. The changes to tests are required to ensure that test is imported first to setup the environment. Hopefully these can all be replaced with an __init__.py in a post-nose keystone. Implements: blueprint extract-eventlet Change-Id: Icacd6f2ee0906ac5d303777c1f87a184f38283bf --- tests/test_backend_memcache.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/test_backend_memcache.py') diff --git a/tests/test_backend_memcache.py b/tests/test_backend_memcache.py index 5391d7f9..e31f1576 100644 --- a/tests/test_backend_memcache.py +++ b/tests/test_backend_memcache.py @@ -20,11 +20,12 @@ import uuid import memcache +from keystone import test + from keystone.common import utils from keystone import exception from keystone.openstack.common import jsonutils from keystone.openstack.common import timeutils -from keystone import test from keystone import token from keystone.token.backends import memcache as token_memcache -- cgit