Merge "Include a copy of tempest.scenario.manager module"

This commit is contained in:
Jenkins 2017-03-16 20:05:37 +00:00 committed by Gerrit Code Review
commit 8d85ca0e02
4 changed files with 1384 additions and 5 deletions

@ -5,8 +5,10 @@ Ironic tempest plugin
This directory contains Tempest tests to cover the Ironic project,
as well as a plugin to automatically load these tests into tempest.
See the tempest plugin docs for information on using it:
http://docs.openstack.org/developer/tempest/plugin.html#using-plugins
See the tempest plugin documentation for information about creating
a plugin, stable API interface, TempestPlugin class interface, plugin
structure, and how to use plugins:
http://docs.openstack.org/developer/tempest/plugin.html
See the Ironic documentation for information about how to run the
tempest tests:

File diff suppressed because it is too large Load Diff

@ -20,11 +20,11 @@ from tempest.common import waiters
from tempest import config
from tempest.lib.common import api_version_utils
from tempest.lib import exceptions as lib_exc
from tempest.scenario import manager # noqa
from ironic_tempest_plugin import clients
from ironic_tempest_plugin.common import utils
from ironic_tempest_plugin.common import waiters as ironic_waiters
from ironic_tempest_plugin import manager
CONF = config.CONF

@ -13,13 +13,14 @@
# License for the specific language governing permissions and limitations
# under the License.
from ironic_tempest_plugin.tests.scenario import baremetal_manager
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
from tempest.scenario import manager
from tempest import test
from ironic_tempest_plugin import manager
from ironic_tempest_plugin.tests.scenario import baremetal_manager
CONF = config.CONF