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

22 lines
503 B
Python
Raw Normal View History

2019-06-09 13:10:45 +02:00
import os
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
2021-06-07 22:28:56 +02:00
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
def test_python3_bin(host):
version = host.run("/opt/rh/rh-python38/root/usr/bin/python3 --version").stdout
assert "Python 3.8" in version