Use the embedded scenario manager instead of tempest one

While waiting for tempest scenario manager to stabilize its API,
a copy of it has been imported, so make sure to use it and to not
rely on tempest's one (whose API is changing during the stabilization
process, so it may break anytime).

Just one file needs to change its imports.
At the same time, fix the import order for another file.

Change-Id: I29c4784d59151948778cad57b7db56a368ed821d
This commit is contained in:
Luigi Toscano 2021-02-23 10:24:01 +01:00
parent 21d63a3ada
commit 3c5c8a2364
2 changed files with 4 additions and 2 deletions

View File

@ -13,10 +13,11 @@
# License for the specific language governing permissions and limitations
# under the License.
from cinder_tempest_plugin.scenario import manager
from tempest.common import utils
from tempest.lib import decorators
from cinder_tempest_plugin.scenario import manager
class SnapshotDataIntegrityTests(manager.ScenarioTest):

View File

@ -15,7 +15,8 @@ from tempest.common import waiters
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
from tempest.scenario import manager
from cinder_tempest_plugin.scenario import manager
CONF = config.CONF