You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
487 B
YAML
18 lines
487 B
YAML
# external2 is loaded from config path.
|
|
# external1 is loaded from integration/module_utils/module_utils/..
|
|
|
|
- name: integration/module_utils/adjacent_to_playbook.yml
|
|
hosts: test-targets
|
|
any_errors_fatal: true
|
|
tasks:
|
|
|
|
- custom_python_external_module:
|
|
register: out
|
|
|
|
- debug: msg={{out}}
|
|
- assert:
|
|
that:
|
|
- out.external1_path == "ansible/integration/module_utils/module_utils/external1.py"
|
|
- out.external2_path == "ansible/lib/module_utils/external2.py"
|
|
|