xoxys.vaultwarden_ldap_docker/molecule/centos7/tests/test_default.py
Robert Kaussow 0f33b8945b
All checks were successful
continuous-integration/drone/push Build is passing
initial commit
2020-06-21 22:00:53 +02:00

15 lines
404 B
Python

import os
import testinfra.utils.ansible_runner
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
def test_bitwardenrs_ldap_compose_file(host):
f = host.file('/var/lib/docker/services/bitwardenrs_ldap/docker-compose.yml')
assert f.exists