Comment 2 for bug 1591281

Revision history for this message
Dolph Mathews (dolph) wrote :

How are you building keystone such that this is both required and missing? How did the build fail?

As far as I can tell, we don't use testresources at all:

keystone/tests/unit/test_versions.py
181:V3_JSON_HOME_RESOURCES = {
880: 'resources': V3_JSON_HOME_RESOURCES}
889: 'resources': V3_JSON_HOME_RESOURCES})
939: expected_document = {'resources': {}}

keystone/tests/unit/test_backend_ldap.py
25:import pkg_resources
82: env = pkg_resources.Environment()
84: entrypoint_map = pkg_resources.get_entry_map(keystone_dist)

keystone/tests/unit/common/test_json_home.py
70: 'resources': {
83: 'resources': {

keystone/tests/unit/test_sql_banned_operations.py
36: def __init__(self, banned_resources=None):
38: self._banned_resources = banned_resources or []
48: for resource in self._banned_resources:
63: with BannedDBSchemaOperations(banned_resources=['Column']):
70: with BannedDBSchemaOperations(banned_resources=['Table']):

keystone/tests/unit/test_v3.py
1488: self.assertThat(resp_data['resources'][rel],