From 9ec41c0397dbcf818513efd9bc92ad488b66ceca Mon Sep 17 00:00:00 2001 From: Daniel Gonzalez Date: Thu, 28 Apr 2016 15:15:12 -0500 Subject: [PATCH] Replace tempest-lib with tempest.lib tempest-lib is deprecated, so replace it with tempest.lib. Co-Authored-By: Sheel Rana Change-Id: I0495eba110bb7581623fbcf49dc63a27e9cb6d64 Closes-Bug: #1553047 --- functional/common/test.py | 4 ++-- functional/tests/compute/v2/test_keypair.py | 4 ++-- functional/tests/compute/v2/test_server.py | 4 ++-- functional/tests/identity/v2/test_identity.py | 2 +- functional/tests/identity/v2/test_project.py | 2 +- functional/tests/identity/v2/test_user.py | 4 ++-- functional/tests/identity/v3/test_domain.py | 4 ++-- functional/tests/identity/v3/test_endpoint.py | 2 +- functional/tests/identity/v3/test_group.py | 2 +- functional/tests/identity/v3/test_identity.py | 2 +- functional/tests/identity/v3/test_idp.py | 2 +- functional/tests/identity/v3/test_project.py | 2 +- functional/tests/identity/v3/test_role.py | 2 +- functional/tests/identity/v3/test_service.py | 2 +- functional/tests/identity/v3/test_service_provider.py | 2 +- functional/tests/identity/v3/test_user.py | 2 +- test-requirements.txt | 2 +- 17 files changed, 22 insertions(+), 22 deletions(-) diff --git a/functional/common/test.py b/functional/common/test.py index 9887c76570..436156151e 100644 --- a/functional/common/test.py +++ b/functional/common/test.py @@ -17,8 +17,8 @@ import subprocess import testtools import six -from tempest_lib.cli import output_parser -from tempest_lib import exceptions +from tempest.lib.cli import output_parser +from tempest.lib import exceptions COMMON_DIR = os.path.dirname(os.path.abspath(__file__)) diff --git a/functional/tests/compute/v2/test_keypair.py b/functional/tests/compute/v2/test_keypair.py index 80cd4b464b..6bc5cdb7c1 100644 --- a/functional/tests/compute/v2/test_keypair.py +++ b/functional/tests/compute/v2/test_keypair.py @@ -14,8 +14,8 @@ import tempfile from functional.common import test -from tempest_lib.common.utils import data_utils -from tempest_lib import exceptions +from tempest.lib.common.utils import data_utils +from tempest.lib import exceptions class KeypairBase(test.TestCase): diff --git a/functional/tests/compute/v2/test_server.py b/functional/tests/compute/v2/test_server.py index 198bd56b2f..4309aeaa53 100644 --- a/functional/tests/compute/v2/test_server.py +++ b/functional/tests/compute/v2/test_server.py @@ -12,11 +12,11 @@ import time -from tempest_lib.common.utils import data_utils +from tempest.lib.common.utils import data_utils import testtools from functional.common import test -from tempest_lib import exceptions +from tempest.lib import exceptions class ServerTests(test.TestCase): diff --git a/functional/tests/identity/v2/test_identity.py b/functional/tests/identity/v2/test_identity.py index 4346499ce6..9adbe49f4f 100644 --- a/functional/tests/identity/v2/test_identity.py +++ b/functional/tests/identity/v2/test_identity.py @@ -10,7 +10,7 @@ # License for the specific language governing permissions and limitations # under the License. -from tempest_lib.common.utils import data_utils +from tempest.lib.common.utils import data_utils from functional.common import test diff --git a/functional/tests/identity/v2/test_project.py b/functional/tests/identity/v2/test_project.py index 3a5e8e81a9..e9580ecfb6 100644 --- a/functional/tests/identity/v2/test_project.py +++ b/functional/tests/identity/v2/test_project.py @@ -10,7 +10,7 @@ # License for the specific language governing permissions and limitations # under the License. -from tempest_lib.common.utils import data_utils +from tempest.lib.common.utils import data_utils from functional.tests.identity.v2 import test_identity diff --git a/functional/tests/identity/v2/test_user.py b/functional/tests/identity/v2/test_user.py index a0c1a46b86..34cabf7bf4 100644 --- a/functional/tests/identity/v2/test_user.py +++ b/functional/tests/identity/v2/test_user.py @@ -10,8 +10,8 @@ # License for the specific language governing permissions and limitations # under the License. -from tempest_lib.common.utils import data_utils -from tempest_lib import exceptions +from tempest.lib.common.utils import data_utils +from tempest.lib import exceptions from functional.tests.identity.v2 import test_identity diff --git a/functional/tests/identity/v3/test_domain.py b/functional/tests/identity/v3/test_domain.py index 221efd6a27..0708e4200d 100644 --- a/functional/tests/identity/v3/test_domain.py +++ b/functional/tests/identity/v3/test_domain.py @@ -10,8 +10,8 @@ # License for the specific language governing permissions and limitations # under the License. -from tempest_lib.common.utils import data_utils -from tempest_lib import exceptions +from tempest.lib.common.utils import data_utils +from tempest.lib import exceptions from functional.tests.identity.v3 import test_identity diff --git a/functional/tests/identity/v3/test_endpoint.py b/functional/tests/identity/v3/test_endpoint.py index e68aa848da..ec11deab30 100644 --- a/functional/tests/identity/v3/test_endpoint.py +++ b/functional/tests/identity/v3/test_endpoint.py @@ -10,7 +10,7 @@ # License for the specific language governing permissions and limitations # under the License. -from tempest_lib.common.utils import data_utils +from tempest.lib.common.utils import data_utils from functional.tests.identity.v3 import test_identity diff --git a/functional/tests/identity/v3/test_group.py b/functional/tests/identity/v3/test_group.py index 156a9ff1e8..3f58864dc2 100644 --- a/functional/tests/identity/v3/test_group.py +++ b/functional/tests/identity/v3/test_group.py @@ -10,7 +10,7 @@ # License for the specific language governing permissions and limitations # under the License. -from tempest_lib.common.utils import data_utils +from tempest.lib.common.utils import data_utils from functional.tests.identity.v3 import test_identity diff --git a/functional/tests/identity/v3/test_identity.py b/functional/tests/identity/v3/test_identity.py index b8c652abc6..3f9887428b 100644 --- a/functional/tests/identity/v3/test_identity.py +++ b/functional/tests/identity/v3/test_identity.py @@ -12,7 +12,7 @@ import os -from tempest_lib.common.utils import data_utils +from tempest.lib.common.utils import data_utils from functional.common import test diff --git a/functional/tests/identity/v3/test_idp.py b/functional/tests/identity/v3/test_idp.py index 3d6739d7f4..08f660f66d 100644 --- a/functional/tests/identity/v3/test_idp.py +++ b/functional/tests/identity/v3/test_idp.py @@ -11,7 +11,7 @@ # under the License. from functional.tests.identity.v3 import test_identity -from tempest_lib.common.utils import data_utils +from tempest.lib.common.utils import data_utils class IdentityProviderTests(test_identity.IdentityTests): diff --git a/functional/tests/identity/v3/test_project.py b/functional/tests/identity/v3/test_project.py index 6c278691f4..d060c7b1a1 100644 --- a/functional/tests/identity/v3/test_project.py +++ b/functional/tests/identity/v3/test_project.py @@ -10,7 +10,7 @@ # License for the specific language governing permissions and limitations # under the License. -from tempest_lib.common.utils import data_utils +from tempest.lib.common.utils import data_utils from functional.tests.identity.v3 import test_identity diff --git a/functional/tests/identity/v3/test_role.py b/functional/tests/identity/v3/test_role.py index 5f150b052d..29dc4b2005 100644 --- a/functional/tests/identity/v3/test_role.py +++ b/functional/tests/identity/v3/test_role.py @@ -10,7 +10,7 @@ # License for the specific language governing permissions and limitations # under the License. -from tempest_lib.common.utils import data_utils +from tempest.lib.common.utils import data_utils from functional.tests.identity.v3 import test_identity diff --git a/functional/tests/identity/v3/test_service.py b/functional/tests/identity/v3/test_service.py index 147208a2bc..684fa5fea8 100644 --- a/functional/tests/identity/v3/test_service.py +++ b/functional/tests/identity/v3/test_service.py @@ -10,7 +10,7 @@ # License for the specific language governing permissions and limitations # under the License. -from tempest_lib.common.utils import data_utils +from tempest.lib.common.utils import data_utils from functional.tests.identity.v3 import test_identity diff --git a/functional/tests/identity/v3/test_service_provider.py b/functional/tests/identity/v3/test_service_provider.py index eed9fccb72..936c6620d6 100644 --- a/functional/tests/identity/v3/test_service_provider.py +++ b/functional/tests/identity/v3/test_service_provider.py @@ -11,7 +11,7 @@ # under the License. from functional.tests.identity.v3 import test_identity -from tempest_lib.common.utils import data_utils +from tempest.lib.common.utils import data_utils class ServiceProviderTests(test_identity.IdentityTests): diff --git a/functional/tests/identity/v3/test_user.py b/functional/tests/identity/v3/test_user.py index 00b9bdc2fc..cc3e08a0b3 100644 --- a/functional/tests/identity/v3/test_user.py +++ b/functional/tests/identity/v3/test_user.py @@ -10,7 +10,7 @@ # License for the specific language governing permissions and limitations # under the License. -from tempest_lib.common.utils import data_utils +from tempest.lib.common.utils import data_utils from functional.tests.identity.v3 import test_identity diff --git a/test-requirements.txt b/test-requirements.txt index 5694550a8a..f39b86bb60 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -15,7 +15,7 @@ sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 # BSD os-testr>=0.4.1 # Apache-2.0 testrepository>=0.0.18 # Apache-2.0/BSD testtools>=1.4.0 # MIT -tempest-lib>=0.14.0 # Apache-2.0 +tempest>=11.0.0 # Apache-2.0 osprofiler>=1.3.0 # Apache-2.0 # Install these to generate sphinx autodocs