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.
15 lines
319 B
YAML
15 lines
319 B
YAML
# external1 and external2 are loaded from config path.
|
|
|
|
- name: integration/module_utils/from_config_path.yml
|
|
hosts: test-targets
|
|
any_errors_fatal: true
|
|
tasks:
|
|
|
|
- custom_python_external_pkg:
|
|
register: out
|
|
|
|
- assert:
|
|
that:
|
|
- out.extmod_path == "ansible/lib/module_utils/externalpkg/extmod.py"
|
|
|