Merge "Update hacking version"

This commit is contained in:
Zuul 2019-01-04 10:23:03 +00:00 committed by Gerrit Code Review
commit f46b1c3b08
9 changed files with 33 additions and 28 deletions

View File

@ -17,6 +17,13 @@
# This module has been relicensed from the source below: # This module has been relicensed from the source below:
# https://github.com/SamYaple/yaodu/blob/master/ansible/library/ceph_osd_list # https://github.com/SamYaple/yaodu/blob/master/ansible/library/ceph_osd_list
import json
import pyudev
import re
import subprocess # nosec
from ansible.module_utils.basic import AnsibleModule
DOCUMENTATION = ''' DOCUMENTATION = '''
--- ---
module: find_disks module: find_disks
@ -74,11 +81,6 @@ EXAMPLES = '''
register: swift_disks register: swift_disks
''' '''
import json
import pyudev
import re
import subprocess # nosec
PREFERRED_DEVICE_LINK_ORDER = [ PREFERRED_DEVICE_LINK_ORDER = [
'/dev/disk/by-uuid', '/dev/disk/by-uuid',
@ -354,7 +356,6 @@ def main():
except Exception as e: except Exception as e:
module.exit_json(failed=True, msg=repr(e)) module.exit_json(failed=True, msg=repr(e))
# import module snippets
from ansible.module_utils.basic import * # noqa
if __name__ == '__main__': if __name__ == '__main__':
main() main()

View File

@ -26,6 +26,9 @@ import traceback
import shade import shade
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.openstack import openstack_full_argument_spec
def main(): def main():
argument_spec = openstack_full_argument_spec( argument_spec = openstack_full_argument_spec(
@ -94,8 +97,6 @@ def main():
module.exit_json(failed=True, changed=True, module.exit_json(failed=True, changed=True,
msg=repr(traceback.format_exc())) msg=repr(traceback.format_exc()))
# import module snippets
from ansible.module_utils.basic import * # noqa
from ansible.module_utils.openstack import * # noqa
if __name__ == '__main__': if __name__ == '__main__':
main() main()

View File

@ -18,6 +18,9 @@ import traceback
import shade import shade
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.openstack import openstack_full_argument_spec
def main(): def main():
argument_spec = openstack_full_argument_spec( argument_spec = openstack_full_argument_spec(
@ -83,8 +86,6 @@ def main():
module.exit_json(failed=True, changed=True, module.exit_json(failed=True, changed=True,
msg=repr(traceback.format_exc())) msg=repr(traceback.format_exc()))
# import module snippets
from ansible.module_utils.basic import * # noqa
from ansible.module_utils.openstack import * # noqa
if __name__ == '__main__': if __name__ == '__main__':
main() main()

View File

@ -26,6 +26,9 @@ import traceback
import shade import shade
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.openstack import openstack_full_argument_spec
class SanityChecks(object): class SanityChecks(object):
# TODO(pbourke): remove and replace with direct call to os_object # TODO(pbourke): remove and replace with direct call to os_object
@ -56,8 +59,6 @@ def main():
module.exit_json(failed=True, changed=True, module.exit_json(failed=True, changed=True,
msg=repr(traceback.format_exc())) msg=repr(traceback.format_exc()))
# import module snippets
from ansible.module_utils.basic import * # noqa
from ansible.module_utils.openstack import * # noqa
if __name__ == '__main__': if __name__ == '__main__':
main() main()

View File

@ -15,6 +15,7 @@
import os import os
import sys import sys
# NOTE(SamYaple): Update the search path to prefer PROJECT_ROOT as the source # NOTE(SamYaple): Update the search path to prefer PROJECT_ROOT as the source
# of packages to import if we are using local tools instead of # of packages to import if we are using local tools instead of
# pip installed kolla tools # pip installed kolla tools
@ -23,7 +24,7 @@ PROJECT_ROOT = os.path.abspath(os.path.join(
if PROJECT_ROOT not in sys.path: if PROJECT_ROOT not in sys.path:
sys.path.insert(0, PROJECT_ROOT) sys.path.insert(0, PROJECT_ROOT)
from kolla.image import build from kolla.image import build # noqa
def main(): def main():

View File

@ -46,13 +46,13 @@ PROJECT_ROOT = os.path.abspath(os.path.join(
if PROJECT_ROOT not in sys.path: if PROJECT_ROOT not in sys.path:
sys.path.insert(0, PROJECT_ROOT) sys.path.insert(0, PROJECT_ROOT)
from kolla.common import config as common_config from kolla.common import config as common_config # noqa
from kolla.common import task from kolla.common import task # noqa
from kolla.common import utils from kolla.common import utils # noqa
from kolla import exception from kolla import exception # noqa
from kolla.template import filters as jinja_filters from kolla.template import filters as jinja_filters # noqa
from kolla.template import methods as jinja_methods from kolla.template import methods as jinja_methods # noqa
from kolla import version from kolla import version # noqa
LOG = utils.make_a_logger() LOG = utils.make_a_logger()

View File

@ -8,7 +8,7 @@ coverage!=4.4,>=4.0 # Apache-2.0
ddt>=1.0.1 # MIT ddt>=1.0.1 # MIT
extras>=1.0.0 # MIT extras>=1.0.0 # MIT
graphviz!=0.5.0,>=0.4 # MIT License graphviz!=0.5.0,>=0.4 # MIT License
hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0 hacking>=1.1.0,<1.2.0 # Apache-2.0
oslo.log>=3.36.0 # Apache-2.0 oslo.log>=3.36.0 # Apache-2.0
oslotest>=3.2.0 # Apache-2.0 oslotest>=3.2.0 # Apache-2.0
PrettyTable<0.8,>=0.7.1 # BSD PrettyTable<0.8,>=0.7.1 # BSD

View File

@ -20,9 +20,10 @@ from oslo_log import log as logging
from oslotest import base from oslotest import base
import testtools import testtools
sys.path.append( sys.path.append(
os.path.abspath(os.path.join(os.path.dirname(__file__), '../tools'))) os.path.abspath(os.path.join(os.path.dirname(__file__), '../tools')))
from kolla.image import build from kolla.image import build # noqa
LOG = logging.getLogger(__name__) LOG = logging.getLogger(__name__)

View File

@ -30,8 +30,7 @@ PROJECT_ROOT = os.path.abspath(os.path.join(
if PROJECT_ROOT not in sys.path: if PROJECT_ROOT not in sys.path:
sys.path.insert(0, PROJECT_ROOT) sys.path.insert(0, PROJECT_ROOT)
from kolla.common import config # noqa
from kolla.common import config
logging.basicConfig(level=logging.INFO) logging.basicConfig(level=logging.INFO)