diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index dbd37733..785c7c4a 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -143,3 +143,5 @@ jobs: target: ${{ matrix.target }} target-python-version: ${{ matrix.python }} testing-type: integration + - name: Show output of the current_container_facts module + run: ANSIBLE_COLLECTIONS_PATHS=/home/runner/work/community.docker/community.docker/ ansible localhost -m community.docker.current_container_facts diff --git a/tests/utils/shippable/linux.sh b/tests/utils/shippable/linux.sh index 9a5381f8..6b1ce566 100755 --- a/tests/utils/shippable/linux.sh +++ b/tests/utils/shippable/linux.sh @@ -16,6 +16,8 @@ else target="azp/" fi +ansible localhost -m community.docker.current_container_facts + # shellcheck disable=SC2086 ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \ --docker "${image}"