Merge "Skip tests in UsersV3TestJSON with an immutable user source "

This commit is contained in:
Zuul 2019-07-29 07:53:44 +00:00 committed by Gerrit Code Review
commit 464509830a

View File

@ -33,6 +33,14 @@ class UsersV3TestJSON(base.BaseIdentityV3AdminTest):
self.assertNotIn(not_expected[key],
map(lambda x: x[key], body))
@classmethod
def skip_checks(cls):
super(UsersV3TestJSON, cls).skip_checks()
if CONF.identity_feature_enabled.immutable_user_source:
raise cls.skipException('Skipped because environment has an '
'immutable user source and solely '
'provides read-only access to users.')
@classmethod
def resource_setup(cls):
super(UsersV3TestJSON, cls).resource_setup()