mirror of
https://github.com/zebrajr/ansible.git
synced 2025-12-06 00:19:48 +01:00
* Add intentional test coverage for lib/ansible/plugins/inventory/__init__.py * Add intentional (integration) test coverage for lib/ansible/module_utils/common/network.py * Add ansible_release info test from https://github.com/ansible/ansible/pull/74673 ci_complete ci_coverage Co-authored-by: Rick Elrod <rick@elrod.me>
20 lines
689 B
Bash
Executable File
20 lines
689 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
export ANSIBLE_ROLES_PATH=../
|
|
|
|
ansible-playbook module_utils_basic_setcwd.yml -i ../../inventory "$@"
|
|
|
|
# Keep the -vvvvv here. This acts as a test for testing that higher verbosity
|
|
# doesn't traceback with unicode in the custom module_utils directory path.
|
|
ansible-playbook module_utils_vvvvv.yml -i ../../inventory -vvvvv "$@"
|
|
|
|
ansible-playbook module_utils_test.yml -i ../../inventory -v "$@"
|
|
|
|
ANSIBLE_MODULE_UTILS=other_mu_dir ansible-playbook module_utils_envvar.yml -i ../../inventory -v "$@"
|
|
|
|
ansible-playbook module_utils_common_dict_transformation.yml -i ../../inventory "$@"
|
|
|
|
ansible-playbook module_utils_common_network.yml -i ../../inventory "$@"
|