diff --git a/molecule/ec2-centos-7/tests/test_default.py b/molecule/ec2-centos-7/tests/test_default.py index 23843a7..089ec9f 100644 --- a/molecule/ec2-centos-7/tests/test_default.py +++ b/molecule/ec2-centos-7/tests/test_default.py @@ -11,4 +11,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner( def test_python3_is_installed(host): python3 = host.package("python36") + pip3 = host.package("python3-pip") + assert python3.is_installed + assert pip3.is_installed