Move integration tests to python-saharaclient 0.6.0

Co-Authored-By: Alexander Ignatov <aignatov@mirantis.com>
Co-Authored-By: Yaroslav Lobankov <ylobankov@mirantis.com>

Partial-Implements: blueprint savanna-renaming-service
Change-Id: I1a09613a0153c967ef44dce2dc1c4833a939657c
This commit is contained in:
Trevor McKay 2014-03-19 11:28:39 -04:00 committed by Yaroslav Lobankov
parent ded3e273af
commit d3e0538d8d
2 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ import uuid
from neutronclient.v2_0 import client as neutron_client
from novaclient.v1_1 import client as nova_client
import savannaclient.client as savanna_client
import saharaclient.client as sahara_client
from swiftclient import client as swift_client
import unittest2
@ -64,13 +64,13 @@ class ITestCase(unittest2.TestCase):
self.common_config.SAHARA_HOST, self.common_config.SAHARA_PORT
)
self.sahara = savanna_client.Client(
self.common_config.SAHARA_API_VERSION,
self.sahara = sahara_client.Client(
version=self.common_config.SAHARA_API_VERSION,
username=self.common_config.OS_USERNAME,
api_key=self.common_config.OS_PASSWORD,
project_name=self.common_config.OS_TENANT_NAME,
auth_url=self.common_config.OS_AUTH_URL,
savanna_url='http://%s:%s/v%s/%s' % (
sahara_url='http://%s:%s/v%s/%s' % (
self.common_config.SAHARA_HOST,
self.common_config.SAHARA_PORT,
self.common_config.SAHARA_API_VERSION,

View File

@ -17,4 +17,4 @@ testscenarios>=0.4
testtools>=0.9.34
unittest2
python-savannaclient>=0.5.0
python-saharaclient>=0.6.0