mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
442 B
Bash
16 lines
442 B
Bash
8 years ago
|
#!/bin/bash -eux
|
||
|
|
||
|
set -o pipefail
|
||
|
|
||
|
add-apt-repository 'deb http://archive.ubuntu.com/ubuntu trusty-backports universe'
|
||
|
add-apt-repository 'ppa:fkrull/deadsnakes'
|
||
|
|
||
|
apt-get update -qq
|
||
|
apt-get install python2.4 shellcheck -qq
|
||
|
|
||
|
pip install tox --disable-pip-version-check
|
||
|
|
||
|
ansible-test compile --color -v
|
||
|
ansible-test sanity --color -v --tox --skip-test ansible-doc --python 2.7
|
||
|
ansible-test sanity --color -v --tox --test ansible-doc --coverage
|