xoxys.python3/molecule/centos7/tests/test_default.py

20 lines
434 B
Python
Raw Normal View History

2019-06-09 13:10:45 +02:00
import os
import testinfra.utils.ansible_runner
2019-09-23 00:39:36 +02:00
import warnings
2019-09-23 00:39:36 +02:00
warnings.filterwarnings("ignore", category=DeprecationWarning)
2019-06-09 13:10:45 +02:00
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']
).get_hosts('all')
2019-06-09 13:10:45 +02:00
2019-09-23 00:39:36 +02:00
def test_python3_is_installed(host):
python3 = host.package("python3")
pip3 = host.package("python3-pip")
2019-06-09 13:10:45 +02:00
2019-09-23 00:39:36 +02:00
assert python3.is_installed
assert pip3.is_installed