From e11f7d2339ac0ef13e383de20b700bce60db49e0 Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Thu, 22 Sep 2016 16:25:04 -0400 Subject: [PATCH] add a defaults for integration.sh (#17709) * add a default test image (ansible/ansible:centos7) * add a default test target (all) --- test/utils/shippable/integration.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/utils/shippable/integration.sh b/test/utils/shippable/integration.sh index 4be0624e093..e5e494dc72f 100755 --- a/test/utils/shippable/integration.sh +++ b/test/utils/shippable/integration.sh @@ -2,10 +2,10 @@ source_root=$(python -c "from os import path; print(path.abspath(path.join(path.dirname('$0'), '../../..')))") -test_image="${IMAGE}" +test_image="${IMAGE:-ansible/ansible:centos7}" test_privileged="${PRIVILEGED:-false}" test_flags="${TEST_FLAGS:-}" -test_target="${TARGET:-}" +test_target="${TARGET:-all}" test_ansible_dir="${TEST_ANSIBLE_DIR:-/root/ansible}" test_python3="${PYTHON3:-}"