3e1f6484d7
* add optional module_utils import support Treat core and collections module_utils imports nested within any Python block statement (eg, `try`, `if`) as optional. This allows Ansible modules to implement runtime fallback behavior for missing module_utils (eg from a newer version of ansible-core), where previously, the module payload builder would always fail when unable to locate a module_util (regardless of any runtime behavior the module may implement). * sanity test fixes ci_complete
14 lines
390 B
Python
14 lines
390 B
Python
#!/usr/bin/python
|
|
from __future__ import absolute_import, division, print_function
|
|
__metaclass__ = type
|
|
|
|
results = {}
|
|
# Test that we are rooted correctly
|
|
# Following files:
|
|
# module_utils/yak/zebra/foo.py
|
|
from ansible.module_utils.zebra import foo
|
|
|
|
results['zebra'] = foo.data
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
AnsibleModule(argument_spec=dict()).exit_json(**results)
|