diff --git a/tests/foreman/cli/test_bootstrap_script.py b/tests/foreman/cli/test_bootstrap_script.py index 3ed8ef4230..c5bde9e75f 100644 --- a/tests/foreman/cli/test_bootstrap_script.py +++ b/tests/foreman/cli/test_bootstrap_script.py @@ -15,6 +15,7 @@ import pytest from robottelo.config import settings +from robottelo.logging import logger @pytest.mark.rhel_ver_list([settings.content_host.default_rhel_version]) @@ -37,4 +38,8 @@ def test_os_version(rhel_contenthost): :BZ: 2001476 """ - assert rhel_contenthost.os_version.major == 9 + for _ in range(5): + result = rhel_contenthost.execute('cat /etc/os-release') + logger.info(f"tpapaioa os-release {result=}") + + assert rhel_contenthost.os_version