Replace tempest-lib with tempest.lib
tempest-lib is deprecated, so replace it with tempest.lib. Co-Authored-By: Sheel Rana <ranasheel2000@gmail.com> Change-Id: I0495eba110bb7581623fbcf49dc63a27e9cb6d64 Closes-Bug: #1553047
This commit is contained in:
parent
f1d14de6da
commit
9ec41c0397
@ -17,8 +17,8 @@ import subprocess
|
|||||||
import testtools
|
import testtools
|
||||||
|
|
||||||
import six
|
import six
|
||||||
from tempest_lib.cli import output_parser
|
from tempest.lib.cli import output_parser
|
||||||
from tempest_lib import exceptions
|
from tempest.lib import exceptions
|
||||||
|
|
||||||
|
|
||||||
COMMON_DIR = os.path.dirname(os.path.abspath(__file__))
|
COMMON_DIR = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
@ -14,8 +14,8 @@ import tempfile
|
|||||||
|
|
||||||
from functional.common import test
|
from functional.common import test
|
||||||
|
|
||||||
from tempest_lib.common.utils import data_utils
|
from tempest.lib.common.utils import data_utils
|
||||||
from tempest_lib import exceptions
|
from tempest.lib import exceptions
|
||||||
|
|
||||||
|
|
||||||
class KeypairBase(test.TestCase):
|
class KeypairBase(test.TestCase):
|
||||||
|
@ -12,11 +12,11 @@
|
|||||||
|
|
||||||
import time
|
import time
|
||||||
|
|
||||||
from tempest_lib.common.utils import data_utils
|
from tempest.lib.common.utils import data_utils
|
||||||
import testtools
|
import testtools
|
||||||
|
|
||||||
from functional.common import test
|
from functional.common import test
|
||||||
from tempest_lib import exceptions
|
from tempest.lib import exceptions
|
||||||
|
|
||||||
|
|
||||||
class ServerTests(test.TestCase):
|
class ServerTests(test.TestCase):
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from tempest_lib.common.utils import data_utils
|
from tempest.lib.common.utils import data_utils
|
||||||
|
|
||||||
from functional.common import test
|
from functional.common import test
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# 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
|
from functional.tests.identity.v2 import test_identity
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from tempest_lib.common.utils import data_utils
|
from tempest.lib.common.utils import data_utils
|
||||||
from tempest_lib import exceptions
|
from tempest.lib import exceptions
|
||||||
|
|
||||||
from functional.tests.identity.v2 import test_identity
|
from functional.tests.identity.v2 import test_identity
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from tempest_lib.common.utils import data_utils
|
from tempest.lib.common.utils import data_utils
|
||||||
from tempest_lib import exceptions
|
from tempest.lib import exceptions
|
||||||
|
|
||||||
from functional.tests.identity.v3 import test_identity
|
from functional.tests.identity.v3 import test_identity
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# 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
|
from functional.tests.identity.v3 import test_identity
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# 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
|
from functional.tests.identity.v3 import test_identity
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from tempest_lib.common.utils import data_utils
|
from tempest.lib.common.utils import data_utils
|
||||||
|
|
||||||
from functional.common import test
|
from functional.common import test
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from functional.tests.identity.v3 import test_identity
|
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):
|
class IdentityProviderTests(test_identity.IdentityTests):
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# 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
|
from functional.tests.identity.v3 import test_identity
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# 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
|
from functional.tests.identity.v3 import test_identity
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# 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
|
from functional.tests.identity.v3 import test_identity
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from functional.tests.identity.v3 import test_identity
|
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):
|
class ServiceProviderTests(test_identity.IdentityTests):
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# 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
|
from functional.tests.identity.v3 import test_identity
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 # BSD
|
|||||||
os-testr>=0.4.1 # Apache-2.0
|
os-testr>=0.4.1 # Apache-2.0
|
||||||
testrepository>=0.0.18 # Apache-2.0/BSD
|
testrepository>=0.0.18 # Apache-2.0/BSD
|
||||||
testtools>=1.4.0 # MIT
|
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
|
osprofiler>=1.3.0 # Apache-2.0
|
||||||
|
|
||||||
# Install these to generate sphinx autodocs
|
# Install these to generate sphinx autodocs
|
||||||
|
Loading…
Reference in New Issue
Block a user