summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn R Barker <john@johnrbarker.com>2016-10-18 13:53:57 +0100
committerGitHub <noreply@github.com>2016-10-18 13:53:57 +0100
commit510214a03241ac8bc357077e9bdad72bcbd8190d (patch)
treee04cc52c416dafe07374a0f870a9573748433ce1
parent6f15dfd464549cbaecc99fd50dd61d013af5d74f (diff)
downloadansible-modules-core-510214a03241ac8bc357077e9bdad72bcbd8190d.tar.gz
Group "apt-get update" and "apt-get install" (#5283)
* Group "apt-get update" and "apt-get install" Should speed up sanity * Run apt-get install in quiet mode
-rwxr-xr-xtest/utils/shippable/sanity.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/utils/shippable/sanity.sh b/test/utils/shippable/sanity.sh
index d9234cf0..cc0830fa 100755
--- a/test/utils/shippable/sanity.sh
+++ b/test/utils/shippable/sanity.sh
@@ -7,11 +7,11 @@ 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
-
+ add-apt-repository ppa:fkrull/deadsnakes
apt-add-repository 'deb http://archive.ubuntu.com/ubuntu trusty-backports universe'
apt-get update -qq
- apt-get install shellcheck
+
+ apt-get install -qq shellcheck python2.4
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