mirror of
https://github.com/ansible/ansible.git
synced 2026-08-03 08:03:05 +02:00
* ansible-test - Limit scope of replace-urlopen test Only ansible-core code and plugins in collections can be expected to rely on module_utils. * ansible-test - Limit scope of use-compat-six test Only ansible-core code and plugins in collections can be expected to rely on module_utils. * ansible-test - Limit scope of no-get-exception test Only ansible-core code and plugins in collections should be checked for usage of outdated module_utils functions. * Add integration tests
13 lines
261 B
Bash
Executable File
13 lines
261 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
source ../collection/setup.sh
|
|
|
|
set -x
|
|
|
|
ansible-test sanity --test use-compat-six --color --lint --failure-ok "${@}" > actual.txt
|
|
|
|
diff -u "${TEST_DIR}/expected.txt" actual.txt
|
|
diff -u do-not-check-me.py plugins/modules/check-me.py
|