Project:
https://jenkins.ovirt.org/job/ovirt-system-tests_compat-4.3-suite-master/
Build:
https://jenkins.ovirt.org/job/ovirt-system-tests_compat-4.3-suite-master/...
Build Number: 422
Build Status: Still Failing
Triggered By: Started by timer
-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #412
[Marcin Sobczyk] selenium: Mount '/dev/shm' when using podman
[Evgheni Dereveanchin] Define more CentOS 8 repo mirrors
[Evgheni Dereveanchin] Fix typo in centos-extras-el8 mirror definition
[Ehud Yonasi] OST: add metrics nightly suite for 4.3
[Evgheni Dereveanchin] Use repodata directory as modfyrepo path
Changes for Build #413
[Marcin Sobczyk] selenium: Mount '/dev/shm' when using podman
Changes for Build #414
[Marcin Sobczyk] selenium: Mount '/dev/shm' when using podman
Changes for Build #415
[Marcin Sobczyk] selenium: Mount '/dev/shm' when using podman
Changes for Build #416
[Galit Rosenthal] Use specific LagoinitFile for hc suite 4.3 el7
[Evgeny Slutsky] Add eslutsky(a)redhat.com to jenkins Recipient lists.
Changes for Build #417
[Dominik Holler] Revert "network, ovirtlib: Set custom_emulated_machine"
Changes for Build #418
[Yedidyah Bar David] HE suites: verify_engine_backup
[Sandro Bonazzola] ovirt-engine: drop jobs for legacy versions
Changes for Build #419
[Benny Zlotnik] poll update disk
[Shlomi] Added ability to ignore other repos when sync_mirror runs
Changes for Build #420
[Michal Skrivanek] we really should be installing vmconsole
Changes for Build #421
[Michal Skrivanek] we really should be installing vmconsole
Changes for Build #422
[Michal Skrivanek] we really should be installing vmconsole
-----------------
Failed Tests:
-----------------
1 tests failed.
FAILED: basic-suite-master.test-scenarios.002_bootstrap_pytest.test_verify_add_all_hosts
Error Message:
RuntimeError: 1 hosts failed installation: lago-compat-4-3-suite-master-host-1:
install_failed
Stack Trace:
prefix = <ovirtlago.prefix.OvirtPrefix object at 0x7f1706193e10>
@order_by(_TEST_LIST)
def test_verify_add_all_hosts(prefix):
api = prefix.virt_env.engine_vm().get_api_v4()
hosts_service = api.system_service().hosts_service()
total_hosts =
len(hosts_service.list(search='datacenter={}'.format(DC_NAME)))
testlib.assert_true_within(
lambda: _all_hosts_up(hosts_service, total_hosts),
timeout=constants.ADD_HOST_TIMEOUT
)
../basic-suite-master/test-scenarios/002_bootstrap_pytest.py:443:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/site-packages/ovirtlago/testlib.py:278: in assert_true_within
assert_equals_within(func, True, timeout, allowed_exceptions)
/usr/lib/python2.7/site-packages/ovirtlago/testlib.py:234: in assert_equals_within
res = func()
../basic-suite-master/test-scenarios/002_bootstrap_pytest.py:442: in <lambda>
lambda: _all_hosts_up(hosts_service, total_hosts),
../basic-suite-master/test-scenarios/002_bootstrap_pytest.py:217: in _all_hosts_up
_check_problematic_hosts(hosts_service)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
hosts_service = <ovirtsdk4.services.HostsService object at 0x7f170654ce10>
def _check_problematic_hosts(hosts_service):
problematic_hosts = hosts_service.list(search='datacenter={} AND status !=
installing and status != initializing and status != up'.format(DC_NAME))
if len(problematic_hosts):
dump_hosts = '%s hosts failed installation:\n' %
len(problematic_hosts)
for host in problematic_hosts:
host_service = hosts_service.host_service(host.id)
dump_hosts += '%s: %s\n' % (host.name, host_service.get().status)
raise RuntimeError(dump_hosts)
E
RuntimeError: 1 hosts failed installation:
E lago-compat-4-3-suite-master-host-1: install_failed
../basic-suite-master/test-scenarios/002_bootstrap_pytest.py:237: RuntimeError