mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-16 10:40:04 -03:30
Add molecule test for bootstrap-os (#5845)
This commit is contained in:
11
roles/bootstrap-os/molecule/default/tests/test_default.py
Normal file
11
roles/bootstrap-os/molecule/default/tests/test_default.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import os
|
||||
|
||||
import testinfra.utils.ansible_runner
|
||||
|
||||
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
||||
os.environ['MOLECULE_INVENTORY_FILE']
|
||||
).get_hosts('all')
|
||||
|
||||
|
||||
def test_python(host):
|
||||
assert host.exists('python3') or host.exists('python')
|
||||
Reference in New Issue
Block a user