Run same tests on Shippable as on Travis. (#4889)

Run the same tests as used on Travis.
This commit is contained in:
Matt Clay 2016-09-16 22:27:17 -07:00
parent 989793483f
commit f1be653737
6 changed files with 28 additions and 1 deletions

View file

@ -27,6 +27,8 @@ matrix:
- env: TEST=integration PLATFORM=freebsd VERSION=10.3-STABLE
- env: TEST=integration PLATFORM=osx VERSION=10.11
- env: TEST=sanity INSTALL_DEPS=1
build:
pre_ci_boot:
options: "--privileged=false --net=bridge"

View file

@ -10,7 +10,7 @@ repo="${REPO_NAME}"
if [ "${is_pr}" != "true" ]; then
echo "Module integration tests are only supported on pull requests."
exit 1
exit 0
fi
case "${repo}" in

View file

@ -0,0 +1 @@
/cloud/

View file

@ -0,0 +1,2 @@
cloud/amazon/_ec2_ami_search.py
cloud/amazon/ec2_facts.py

View file

@ -0,0 +1,22 @@
#!/bin/bash -eux
source_root=$(python -c "from os import path; print(path.abspath(path.join(path.dirname('$0'), '../../..')))")
install_deps="${INSTALL_DEPS:-}"
cd "${source_root}"
if [ "${install_deps}" != "" ]; then
add-apt-repository ppa:fkrull/deadsnakes && apt-get update -qq && apt-get install python2.4 -qq
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
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' '|')"
ansible-validate-modules --exclude '/utilities/|/shippable(/|$)' .