xoxys.python3/molecule/ec2-centos-7/tests/test_default.py

18 lines
433 B
Python
Raw Normal View History

2019-06-09 11:10:45 +00:00
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_python3_is_installed(host):
2019-06-09 11:16:30 +00:00
python3 = host.package("python36")
2019-09-20 09:17:15 +00:00
pip3 = host.package("python3-pip")
2019-06-09 11:10:45 +00:00
assert python3.is_installed
2019-09-20 09:17:15 +00:00
assert pip3.is_installed