Merge "Remove logging import unused"

This commit is contained in:
Jenkins 2016-10-13 11:42:30 +00:00 committed by Gerrit Code Review
commit 1953975268
8 changed files with 0 additions and 32 deletions

@ -15,15 +15,12 @@
import abc import abc
from oslo_config import cfg from oslo_config import cfg
from oslo_log import log as logging
import six import six
from stevedore import driver from stevedore import driver
from mistral import exceptions as exc from mistral import exceptions as exc
LOG = logging.getLogger(__name__)
_IMPL_AUTH_HANDLER = None _IMPL_AUTH_HANDLER = None

@ -14,16 +14,11 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from oslo_log import log as logging
from mistral.tests.unit.workbook.v2 import base as v2_base from mistral.tests.unit.workbook.v2 import base as v2_base
from mistral import utils from mistral import utils
from mistral.workbook.v2 import workflows from mistral.workbook.v2 import workflows
LOG = logging.getLogger(__name__)
class TaskSpecValidation(v2_base.WorkflowSpecValidationTestCase): class TaskSpecValidation(v2_base.WorkflowSpecValidationTestCase):
def test_type_injection(self): def test_type_injection(self):
tests = [ tests = [

@ -13,7 +13,6 @@
# under the License. # under the License.
import datetime import datetime
from oslo_log import log as logging
from tempest.lib import exceptions from tempest.lib import exceptions
from tempest import test from tempest import test
@ -21,9 +20,6 @@ from mistral import utils
from mistral_tempest_tests.tests import base from mistral_tempest_tests.tests import base
LOG = logging.getLogger(__name__)
class ActionTestsV2(base.TestCase): class ActionTestsV2(base.TestCase):
_service = 'workflowv2' _service = 'workflowv2'

@ -13,16 +13,12 @@
# under the License. # under the License.
from oslo_concurrency.fixture import lockutils from oslo_concurrency.fixture import lockutils
from oslo_log import log as logging
from tempest.lib import exceptions from tempest.lib import exceptions
from tempest import test from tempest import test
from mistral_tempest_tests.tests import base from mistral_tempest_tests.tests import base
LOG = logging.getLogger(__name__)
class CronTriggerTestsV2(base.TestCase): class CronTriggerTestsV2(base.TestCase):
_service = 'workflowv2' _service = 'workflowv2'

@ -13,7 +13,6 @@
# under the License. # under the License.
from oslo_concurrency.fixture import lockutils from oslo_concurrency.fixture import lockutils
from oslo_log import log as logging
from tempest.lib import exceptions from tempest.lib import exceptions
from tempest import test from tempest import test
@ -21,9 +20,6 @@ from mistral import utils
from mistral_tempest_tests.tests import base from mistral_tempest_tests.tests import base
LOG = logging.getLogger(__name__)
class ExecutionTestsV2(base.TestCase): class ExecutionTestsV2(base.TestCase):
_service = 'workflowv2' _service = 'workflowv2'

@ -13,15 +13,11 @@
# under the License. # under the License.
from oslo_concurrency.fixture import lockutils from oslo_concurrency.fixture import lockutils
from oslo_log import log as logging
from tempest import test from tempest import test
from mistral_tempest_tests.tests import base from mistral_tempest_tests.tests import base
LOG = logging.getLogger(__name__)
class TasksTestsV2(base.TestCase): class TasksTestsV2(base.TestCase):
_service = 'workflowv2' _service = 'workflowv2'

@ -13,16 +13,12 @@
# under the License. # under the License.
from oslo_concurrency.fixture import lockutils from oslo_concurrency.fixture import lockutils
from oslo_log import log as logging
from tempest.lib import exceptions from tempest.lib import exceptions
from tempest import test from tempest import test
from mistral_tempest_tests.tests import base from mistral_tempest_tests.tests import base
LOG = logging.getLogger(__name__)
class WorkbookTestsV2(base.TestCase): class WorkbookTestsV2(base.TestCase):
_service = 'workflowv2' _service = 'workflowv2'

@ -13,7 +13,6 @@
# under the License. # under the License.
from oslo_concurrency.fixture import lockutils from oslo_concurrency.fixture import lockutils
from oslo_log import log as logging
from tempest.lib import exceptions from tempest.lib import exceptions
from tempest import test from tempest import test
@ -21,9 +20,6 @@ from mistral import utils
from mistral_tempest_tests.tests import base from mistral_tempest_tests.tests import base
LOG = logging.getLogger(__name__)
class WorkflowTestsV2(base.TestCase): class WorkflowTestsV2(base.TestCase):
_service = 'workflowv2' _service = 'workflowv2'