[TEMP] Run current_container_facts module in CI outside of ansible-test.

This commit is contained in:
Felix Fontein 2023-02-03 16:36:00 +01:00
parent 5596b9a1f9
commit 1cdd3e3550
2 changed files with 4 additions and 0 deletions

View File

@ -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

View File

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