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: 516
Build Status: Still Failing
Triggered By: Started by timer
-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #507
[Marcin Sobczyk] performance: Fix broken links for pgdg repos
Changes for Build #508
[Marcin Sobczyk] lago: Skip sysprep when ssh key is available
Changes for Build #509
[Eyal Shenitzky] Add incremental backup VM test
Changes for Build #510
[Nir Soffer] setup: Do not hide real issue by reserving ports
Changes for Build #511
[Nir Soffer] setup: Do not hide real issue by reserving ports
Changes for Build #512
[Nir Soffer] setup: Do not hide real issue by reserving ports
Changes for Build #513
[Nir Soffer] setup: Do not hide real issue by reserving ports
Changes for Build #514
[Nir Soffer] setup: Do not hide real issue by reserving ports
[Sandro Bonazzola] ovirt-guest-agent: drop fc30
[Ehud Yonasi] mock_configs: added rhel configs.
Changes for Build #515
[Nir Soffer] setup: Do not hide real issue by reserving ports
Changes for Build #516
[Michal Skrivanek] verify hotplug memory and test unplug
[Tristan Cacqueray] zuul-jobs-gate: repparent to base-gate-job
[Ehud Yonasi] stdci_runner: added the rhel labels selection.
-----------------
Failed Tests:
-----------------
1 tests failed.
FAILED: basic-suite-master.test-scenarios.002_bootstrap_pytest.test_verify_glance_import
Error Message:
AssertionError: False != True after 600 seconds
Stack Trace:
api_v4 = <ovirtsdk4.Connection object at 0x7fed132a6a50>
@order_by(_TEST_LIST)
def test_verify_glance_import(api_v4):
# If we go with the engine backup before the glance template
# creation is complete, we'll fail the creation of 'vm1' later,
# which is based on that template.
templates_service = api_v4.system_service().templates_service()
testlib.assert_true_within_long(
lambda: TEMPLATE_GUEST in [t.name for t in
templates_service.list()]
)
../basic-suite-master/test-scenarios/002_bootstrap_pytest.py:1289:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/site-packages/ovirtlago/testlib.py:286: in assert_true_within_long
assert_equals_within_long(func, True, allowed_exceptions)
/usr/lib/python2.7/site-packages/ovirtlago/testlib.py:273: in assert_equals_within_long
func, value, LONG_TIMEOUT, allowed_exceptions=allowed_exceptions
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
func = <function <lambda> at 0x7fed10057230>, value = True, timeout = 600
allowed_exceptions = [], initial_wait = 0
def assert_equals_within(
func, value, timeout, allowed_exceptions=None, initial_wait=10
):
allowed_exceptions = allowed_exceptions or []
with utils.EggTimer(timeout) as timer:
while not timer.elapsed():
try:
res = func()
if res == value:
return
except Exception as exc:
if _instance_of_any(exc, allowed_exceptions):
time.sleep(3)
continue
LOGGER.exception("Unhandled exception in %s", func)
raise
if initial_wait == 0:
time.sleep(3)
else:
time.sleep(initial_wait)
initial_wait = 0
try:
raise AssertionError(
'%s != %s after %s seconds' % (res, value,
timeout)
)
E AssertionError: False != True after 600 seconds
/usr/lib/python2.7/site-packages/ovirtlago/testlib.py:252: AssertionError