1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

We may don't need docker

This commit is contained in:
Lukas Kämmerling 2020-04-15 09:13:00 +02:00
parent c3366948bb
commit 79bdd969cb
2 changed files with 2 additions and 8 deletions

View file

@ -30,7 +30,7 @@ export ANSIBLE_COLLECTIONS_PATHS="${HOME}/.ansible"
SHIPPABLE_RESULT_DIR="$(pwd)/shippable"
TEST_DIR="${ANSIBLE_COLLECTIONS_PATHS}/ansible_collections/hetzner/hcloud"
mkdir -p "${TEST_DIR}"
cp -aT "." "${TEST_DIR}"
cp -raT "." "${TEST_DIR}"
cd "${TEST_DIR}"
# STAR: HACK install dependencies

View file

@ -11,11 +11,5 @@ stage="prod"
changed_all_target="shippable/${cloud}/smoketest/"
if ! ansible-test integration "${changed_all_target}" --list-targets > /dev/null 2>&1; then
# no smoketest tests are available for this cloud
changed_all_target="none"
fi
# shellcheck disable=SC2086
ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \
--remote-terminate always --remote-stage "${stage}" --changed-all-target "${changed_all_target}"
ansible-test integration --color -v "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} --changed-all-target "${changed_all_target}"