xoxys.packages/molecule/rocky8/tests/test_default.py
Robert Kaussow 5843c82fe7
All checks were successful
continuous-integration/drone/push Build is passing
fix: remove recommended packages by default
2022-03-09 22:30:12 +01:00

14 lines
386 B
Python

import os
import pytest
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ["MOLECULE_INVENTORY_FILE"]
).get_hosts("all")
@pytest.mark.parametrize("package", ["setroubleshoot", "mcstransd", "xinetd", "ypbind", "telnet"])
def test_packages_uninstalled(host, package):
assert not host.package(package).is_installed