mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
14 lines
392 B
Bash
Executable file
14 lines
392 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
cloud="hcloud"
|
|
python="3.8"
|
|
|
|
target="cloud/hcloud/"
|
|
|
|
changed_all_target="shippable/${cloud}/smoketest/"
|
|
ls -la
|
|
echo "[default]
|
|
hcloud_api_token=${HCLOUD_TOKEN}
|
|
" >> $(pwd)/tests/integration/cloud-config-hcloud.ini
|
|
# shellcheck disable=SC2086
|
|
ansible-test integration --color --local -v "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"}
|