Test 0.2.0 keystoneclient to avoid new deps

As described here:

  http://lists.openstack.org/pipermail/openstack-dev/2013-January/004240.html

keystone tests check out various different versions of keystoneclient
and uses them to run a set of tests against the keystone API.

A recent change to keystoneclient in version 0.2.1 introduced a new
dependency on the requests module which is not currently listed as
a dependency for keystone's tests.

Rather than chasing latest keystoneclient on stable/folsom, let's
just test the 0.2.0 version.

Change-Id: I730f0d7e227c76ae77fdb012feec9ce41ab8d8d2
This commit is contained in:
Mark McLoughlin 2013-01-03 17:29:28 +00:00
parent ec9c84c497
commit 9e300b7ec2
1 changed files with 1 additions and 1 deletions

View File

@ -789,7 +789,7 @@ class KeystoneClientTests(object):
class KcMasterTestCase(CompatTestCase, KeystoneClientTests):
def get_checkout(self):
return KEYSTONECLIENT_REPO, 'master'
return KEYSTONECLIENT_REPO, '0.2.0'
def test_tenant_add_and_remove_user(self):
client = self.get_client(admin=True)