Modify ComputeCapacity scenario host key name
[yardstick.git] / yardstick / __init__.py
index b799c76..c31948d 100644 (file)
@@ -9,10 +9,17 @@
 
 import logging
 import logging.config
+import sys
+import os
+import yardstick.vTC.apexlake as apexlake
+
+# Hack to be able to run apexlake unit tests
+# without having to install apexlake.
+sys.path.append(os.path.dirname(apexlake.__file__))
 
 logging.basicConfig(
     level=logging.WARNING,
-    format='[%(asctime)s] %(name)-20s %(filename)s:%(lineno)d %(levelname)s %(message)s',#noqa
+    format='[%(asctime)s] %(name)-20s %(filename)s:%(lineno)d '
+        '%(levelname)s %(message)s',  # noqa
     datefmt='%m/%d/%y %H:%M:%S')
 logging.getLogger(__name__).setLevel(logging.INFO)
-