diff --git a/mistral/auth/__init__.py b/mistral/auth/__init__.py index 9c301e26b..a7e97fd16 100644 --- a/mistral/auth/__init__.py +++ b/mistral/auth/__init__.py @@ -15,15 +15,12 @@ import abc from oslo_config import cfg -from oslo_log import log as logging import six from stevedore import driver from mistral import exceptions as exc -LOG = logging.getLogger(__name__) - _IMPL_AUTH_HANDLER = None diff --git a/mistral/tests/unit/workbook/v2/test_tasks.py b/mistral/tests/unit/workbook/v2/test_tasks.py index d97aa4e5f..e04d89edd 100644 --- a/mistral/tests/unit/workbook/v2/test_tasks.py +++ b/mistral/tests/unit/workbook/v2/test_tasks.py @@ -14,16 +14,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -from oslo_log import log as logging - from mistral.tests.unit.workbook.v2 import base as v2_base from mistral import utils from mistral.workbook.v2 import workflows -LOG = logging.getLogger(__name__) - - class TaskSpecValidation(v2_base.WorkflowSpecValidationTestCase): def test_type_injection(self): tests = [ diff --git a/mistral_tempest_tests/tests/api/v2/test_actions.py b/mistral_tempest_tests/tests/api/v2/test_actions.py index a2ef48a72..828fabcce 100644 --- a/mistral_tempest_tests/tests/api/v2/test_actions.py +++ b/mistral_tempest_tests/tests/api/v2/test_actions.py @@ -13,7 +13,6 @@ # under the License. import datetime -from oslo_log import log as logging from tempest.lib import exceptions from tempest import test @@ -21,9 +20,6 @@ from mistral import utils from mistral_tempest_tests.tests import base -LOG = logging.getLogger(__name__) - - class ActionTestsV2(base.TestCase): _service = 'workflowv2' diff --git a/mistral_tempest_tests/tests/api/v2/test_cron_triggers.py b/mistral_tempest_tests/tests/api/v2/test_cron_triggers.py index 4dcfb2909..3a0b0c5a6 100644 --- a/mistral_tempest_tests/tests/api/v2/test_cron_triggers.py +++ b/mistral_tempest_tests/tests/api/v2/test_cron_triggers.py @@ -13,16 +13,12 @@ # under the License. from oslo_concurrency.fixture import lockutils -from oslo_log import log as logging from tempest.lib import exceptions from tempest import test from mistral_tempest_tests.tests import base -LOG = logging.getLogger(__name__) - - class CronTriggerTestsV2(base.TestCase): _service = 'workflowv2' diff --git a/mistral_tempest_tests/tests/api/v2/test_executions.py b/mistral_tempest_tests/tests/api/v2/test_executions.py index aa8b8d1c3..3410c4b6c 100644 --- a/mistral_tempest_tests/tests/api/v2/test_executions.py +++ b/mistral_tempest_tests/tests/api/v2/test_executions.py @@ -13,7 +13,6 @@ # under the License. from oslo_concurrency.fixture import lockutils -from oslo_log import log as logging from tempest.lib import exceptions from tempest import test @@ -21,9 +20,6 @@ from mistral import utils from mistral_tempest_tests.tests import base -LOG = logging.getLogger(__name__) - - class ExecutionTestsV2(base.TestCase): _service = 'workflowv2' diff --git a/mistral_tempest_tests/tests/api/v2/test_tasks.py b/mistral_tempest_tests/tests/api/v2/test_tasks.py index 89361296f..332f37eba 100644 --- a/mistral_tempest_tests/tests/api/v2/test_tasks.py +++ b/mistral_tempest_tests/tests/api/v2/test_tasks.py @@ -13,15 +13,11 @@ # under the License. from oslo_concurrency.fixture import lockutils -from oslo_log import log as logging from tempest import test from mistral_tempest_tests.tests import base -LOG = logging.getLogger(__name__) - - class TasksTestsV2(base.TestCase): _service = 'workflowv2' diff --git a/mistral_tempest_tests/tests/api/v2/test_workbooks.py b/mistral_tempest_tests/tests/api/v2/test_workbooks.py index a9469df56..787b0afd1 100644 --- a/mistral_tempest_tests/tests/api/v2/test_workbooks.py +++ b/mistral_tempest_tests/tests/api/v2/test_workbooks.py @@ -13,16 +13,12 @@ # under the License. from oslo_concurrency.fixture import lockutils -from oslo_log import log as logging from tempest.lib import exceptions from tempest import test from mistral_tempest_tests.tests import base -LOG = logging.getLogger(__name__) - - class WorkbookTestsV2(base.TestCase): _service = 'workflowv2' diff --git a/mistral_tempest_tests/tests/api/v2/test_workflows.py b/mistral_tempest_tests/tests/api/v2/test_workflows.py index 3d3a2efec..78386d424 100644 --- a/mistral_tempest_tests/tests/api/v2/test_workflows.py +++ b/mistral_tempest_tests/tests/api/v2/test_workflows.py @@ -13,7 +13,6 @@ # under the License. from oslo_concurrency.fixture import lockutils -from oslo_log import log as logging from tempest.lib import exceptions from tempest import test @@ -21,9 +20,6 @@ from mistral import utils from mistral_tempest_tests.tests import base -LOG = logging.getLogger(__name__) - - class WorkflowTestsV2(base.TestCase): _service = 'workflowv2'