neutron/neutron/tests/fullstack/utils.py
Jakub Libosvar 70d504faff fullstack: Remove ovsdb_interface config opt
ovsdb_interface option was deprecated [1]. Fullstack tests are
still not stable so removing tests using ovs-vsctl interface from
fullstack won't remove much of testing coverage but removal will
simplify the testing matrix a lot.

[1] Change Ieb2b8916d4cdbb3b7e6a953c827b176f2217a42f

Change-Id: I2655e403c2a63038035048a9ada985c471437367
2017-09-27 07:03:17 +00:00

19 lines
742 B
Python

# 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.
def get_ovs_interface_scenarios():
return [
('openflow-cli', {'of_interface': 'ovs-ofctl'}),
('openflow-native', {'of_interface': 'native'}),
]