summaryrefslogtreecommitdiff
path: root/test/utils/shippable/sanity.sh
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2016-09-22 16:34:33 -0700
committerGitHub <noreply@github.com>2016-09-22 16:34:33 -0700
commite672b3141f3895652419ab093624033c5b7ec1a6 (patch)
treeb47ba21b9721dd05181996506d86e0eb2191a406 /test/utils/shippable/sanity.sh
parent26546242e9c65d6f7aaa3f0f6b6facc2a3e01d78 (diff)
downloadansible-modules-extras-e672b3141f3895652419ab093624033c5b7ec1a6.tar.gz
Add shellcheck to sanity checks. (#3013)
Also disable deprecation warnings during module validation.
Diffstat (limited to 'test/utils/shippable/sanity.sh')
-rwxr-xr-xtest/utils/shippable/sanity.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/test/utils/shippable/sanity.sh b/test/utils/shippable/sanity.sh
index 1c0e2451..d9234cf0 100755
--- a/test/utils/shippable/sanity.sh
+++ b/test/utils/shippable/sanity.sh
@@ -9,6 +9,10 @@ cd "${source_root}"
if [ "${install_deps}" != "" ]; then
add-apt-repository ppa:fkrull/deadsnakes && apt-get update -qq && apt-get install python2.4 -qq
+ apt-add-repository 'deb http://archive.ubuntu.com/ubuntu trusty-backports universe'
+ apt-get update -qq
+ apt-get install shellcheck
+
pip install git+https://github.com/ansible/ansible.git@devel#egg=ansible
pip install git+https://github.com/sivel/ansible-testing.git#egg=ansible_testing
fi
@@ -19,4 +23,8 @@ python2.6 -m compileall -fq .
python2.7 -m compileall -fq .
python3.5 -m compileall -fq . -x "($(printf %s "$(< "test/utils/shippable/sanity-skip-python3.txt"))" | tr '\n' '|')"
-ansible-validate-modules --exclude '/utilities/|/shippable(/|$)' .
+ANSIBLE_DEPRECATION_WARNINGS=false \
+ ansible-validate-modules --exclude '/utilities/|/shippable(/|$)' .
+
+shellcheck \
+ test/utils/shippable/*.sh