You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Molecule's Docker driver sets ansible_connection to
community.docker.docker, making
testinfra.utils.ansible_runner.AnsibleRunner.get_host fail to return
such a host in a Molecule test using the Docker driver.
Fix this by translating "community.docker.docker" to "docker".
Closespytest-dev#648.
Molecule's Docker driver sets ansible_connection to
community.docker.docker, making
testinfra.utils.ansible_runner.AnsibleRunner.get_host fail to return
such a host in a Molecule test using the Docker driver.
Fix this by translating "community.docker.docker" to "docker".
Closes#648.
ansible-community/molecule-docker#58 changed Molecule's Docker driver to set
ansible_connection
tocommunity.docker.docker
instead ofdocker
. This value seems to not be handled bytestinfra.utils.ansible_runner.AnsibleRunner.get_host
sinceNone
is returned for a host in a Molecule test using the Docker driver.Would it make sense to add special handling of
ansible_collection == "community.docker.docker"
?The text was updated successfully, but these errors were encountered: