822f7c4cf7
As part of the python 3 first effort [1], this patch adds UT support for python 3.6 by: - Updating the zuul.yaml to include the py36 template and jobs. - Adding a py36-dev target to tox.ini for local testing. - Updating the upper constraints to use master rather than stable/rocky. - Updating the version of eventlet used as previous 2x.x versions had a python 3 bug for monkey patching. - Consolidating the eventlet monkey patching in the code. [1] https://governance.openstack.org/tc/goals/stein/python3-first.html Change-Id: I3c11ac9dff9a2e25b33e8310929c961ffd0bcc52
20 lines
717 B
Python
20 lines
717 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.
|
|
|
|
from neutron.common import eventlet_utils
|
|
|
|
eventlet_utils.monkey_patch()
|
|
|
|
import os # noqa
|
|
|
|
NSX_EXT_PATH = os.path.join(os.path.dirname(__file__), 'extensions')
|