1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

add a defaults for integration.sh (#17709)

* add a default test image (ansible/ansible:centos7)
* add a default test target (all)
This commit is contained in:
Adrian Likins 2016-09-22 16:25:04 -04:00 committed by Matt Clay
parent ada2432165
commit e11f7d2339

View file

@ -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:-}"