5362c65416
This patch bumps the hacking, bandit and flake8 requirements to match suit with similar work (ex [1]). It also updates the code to fix a few new pep8 errors as well as adds a local tox target for requirements-check-dev. [1] https://review.opendev.org/#/c/658245/ Change-Id: I6caeb52dc1a5842338ec989a742ae5989608e0da
39 lines
1.5 KiB
Python
39 lines
1.5 KiB
Python
# Copyright (c) 2014 OpenStack Foundation.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from neutron.tests.unit.extensions import test_portsecurity as psec
|
|
from vmware_nsx.tests import unit as vmware
|
|
from vmware_nsx.tests.unit.nsx_v3 import test_constants as v3_constants
|
|
from vmware_nsx.tests.unit.nsx_v3 import test_plugin as test_nsxv3
|
|
from vmware_nsx.tests.unit import test_utils
|
|
|
|
|
|
class PortSecurityTestCaseNSXv2(psec.PortSecurityDBTestCase,
|
|
test_nsxv3.NsxV3PluginTestCaseMixin):
|
|
|
|
def setUp(self):
|
|
test_utils.override_nsx_ini_test()
|
|
super(PortSecurityTestCaseNSXv2, self).setUp(vmware.PLUGIN_NAME)
|
|
|
|
|
|
class TestPortSecurityNSXv2(PortSecurityTestCaseNSXv2, psec.TestPortSecurity):
|
|
pass
|
|
|
|
|
|
class TestPortSecurityNSXv3(psec.TestPortSecurity,
|
|
test_nsxv3.NsxV3PluginTestCaseMixin):
|
|
def setUp(self, plugin=v3_constants.PLUGIN_NAME):
|
|
super(TestPortSecurityNSXv3, self).setUp(plugin=plugin)
|