summaryrefslogtreecommitdiff
path: root/test/utils/shippable/sanity.sh
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2016-11-02 21:43:40 -0700
committerMatt Clay <matt@mystile.com>2016-11-02 21:59:45 -0700
commit7cc4d3fe04f633f4090d56292f04aecaa2c45735 (patch)
treee359bb1715d87aed7cb7d8b98f7f9ae0d6905a5d /test/utils/shippable/sanity.sh
parentcb1d90ccfd2f3ed62fc8fb1e6620463f5c9c15fe (diff)
downloadansible-modules-core-7cc4d3fe04f633f4090d56292f04aecaa2c45735.tar.gz
Simplify compileall checks. Remove py3 skip list.
Diffstat (limited to 'test/utils/shippable/sanity.sh')
-rwxr-xr-xtest/utils/shippable/sanity.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/utils/shippable/sanity.sh b/test/utils/shippable/sanity.sh
index 3b754afa..8c145302 100755
--- a/test/utils/shippable/sanity.sh
+++ b/test/utils/shippable/sanity.sh
@@ -29,11 +29,10 @@ fi
validate_modules="${build_dir}/test/sanity/validate-modules/validate-modules"
-python2.4 -m compileall -fq -i "test/utils/shippable/sanity-test-python24.txt"
python2.4 -m compileall -fq -x "($(printf %s "$(< "test/utils/shippable/sanity-skip-python24.txt"))" | tr '\n' '|')" .
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' '|')"
+python3.5 -m compileall -fq .
ANSIBLE_DEPRECATION_WARNINGS=false \
"${validate_modules}" --exclude '/utilities/|/shippable(/|$)' .