import testinfra.utils.ansible_runner testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner( '.molecule/ansible_inventory').get_hosts('client') def test_connectivity(Command, Sudo): with Sudo(): ping = Command('hping3 -S -p 389 -c 1 10.31.127.10') assert ping.rc == 0 ping = Command('hping3 -S -p 636 -c 1 10.31.127.10') assert ping.rc == 0 ping = Command('hping3 -S -p 389 -c 1 10.31.127.11') assert ping.rc == 0 ping = Command('hping3 -S -p 636 -c 1 10.31.127.11') assert ping.rc == 0