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

Run the same tests as used on Travis.
reviewable/pr18780/r1
Matt Clay 8 years ago committed by GitHub
parent a8a4d88b53
commit a709991c48

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

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

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

@ -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(/|$)' .
Loading…
Cancel
Save