diff options
author | Matt Martz <matt@sivel.net> | 2019-07-24 20:58:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-24 20:58:13 +0200 |
commit | 95f4282c42cd5ffe4a19a1122685ae9c31876a12 (patch) | |
tree | f2fa2d226ce0d55f7fb5b84cfade886bc23cf63b /test/utils | |
parent | junos_ping supports only network_cli (#59534) (diff) | |
download | ansible-95f4282c42cd5ffe4a19a1122685ae9c31876a12.tar.xz ansible-95f4282c42cd5ffe4a19a1122685ae9c31876a12.zip |
Verify package data in setup.py installs all files (#59537)
* Add sanity test to ensure all non-py files are installed
* Fix mode and regex
* Fix role skel inventory package_data
* Add docs
* Update package_data for inventory files
* Address pylint concerns
* Another tweak to package_data
* Address review feedback
* Change index to 1
* add to ansible-only.txt
Diffstat (limited to 'test/utils')
-rwxr-xr-x | test/utils/shippable/sanity.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils/shippable/sanity.sh b/test/utils/shippable/sanity.sh index 734d39c991..09d859b363 100755 --- a/test/utils/shippable/sanity.sh +++ b/test/utils/shippable/sanity.sh @@ -17,7 +17,7 @@ fi case "${group}" in 1) options=(--skip-test pylint --skip-test ansible-doc --skip-test docs-build) ;; - 2) options=(--test ansible-doc --test docs-build) ;; + 2) options=(--test ansible-doc --test docs-build --test package-data) ;; 3) options=(--test pylint --exclude test/units/ --exclude lib/ansible/module_utils/ --exclude lib/ansible/modules/network/) ;; 4) options=(--test pylint test/units/ lib/ansible/module_utils/ lib/ansible/modules/network/) ;; esac |