Skip to content

Commit

Permalink
Run same tests on Shippable as on Travis. (ansible#4889)
Browse files Browse the repository at this point in the history
Run the same tests as used on Travis.
  • Loading branch information
mattclay authored Sep 17, 2016
1 parent a8a4d88 commit a709991
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 1 deletion.
2 changes: 2 additions & 0 deletions shippable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion test/utils/shippable/integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions test/utils/shippable/sanity-skip-python24.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/cloud/
Empty file.
2 changes: 2 additions & 0 deletions test/utils/shippable/sanity-test-python24.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
cloud/amazon/_ec2_ami_search.py
cloud/amazon/ec2_facts.py
22 changes: 22 additions & 0 deletions test/utils/shippable/sanity.sh
Original file line number Diff line number Diff line change
@@ -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(/|$)' .

0 comments on commit a709991

Please sign in to comment.