Merge "Move object storage bulk_middleware_client to lib interface"

This commit is contained in:
Jenkins 2017-07-26 10:55:26 +00:00 committed by Gerrit Code Review
commit b6a775e414
6 changed files with 11 additions and 3 deletions

View File

@ -0,0 +1,8 @@
---
features:
- |
Define object storage service clients as libraries
Add new service clients to the library interface so the other projects can use these modules as stable libraries without
any maintenance changes.
* bulk_middleware_client

View File

@ -12,9 +12,9 @@
# License for the specific language governing permissions and limitations under
# the License.
from tempest.services.object_storage.account_client import AccountClient
from tempest.services.object_storage.bulk_middleware_client import \
from tempest.lib.services.object_storage.bulk_middleware_client import \
BulkMiddlewareClient
from tempest.services.object_storage.account_client import AccountClient
from tempest.services.object_storage.capabilities_client import \
CapabilitiesClient
from tempest.services.object_storage.container_client import ContainerClient

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from tempest.services.object_storage import bulk_middleware_client
from tempest.lib.services.object_storage import bulk_middleware_client
from tempest.tests.lib import fake_auth_provider
from tempest.tests.lib.services import base