2019-06-09 11:10:45 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
2021-06-07 20:28:56 +00:00
|
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
|
|
).get_hosts("all")
|
2019-06-09 11:10:45 +00:00
|
|
|
|
|
|
|
|
2019-09-22 22:39:36 +00:00
|
|
|
def test_python3_is_installed(host):
|
|
|
|
python3 = host.package("python3")
|
|
|
|
pip3 = host.package("python3-pip")
|
2019-06-09 11:10:45 +00:00
|
|
|
|
2019-09-22 22:39:36 +00:00
|
|
|
assert python3.is_installed
|
|
|
|
assert pip3.is_installed
|
2021-10-04 19:18:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_python3_bin(host):
|
|
|
|
version = host.run("/opt/rh/rh-python38/root/usr/bin/python3 --version").stdout
|
|
|
|
|
|
|
|
assert "Python 3.8" in version
|