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: 402
Build Status: Still Failing
Triggered By: Started by timer
-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #394
[Sandro Bonazzola] repos: fix Advanced Virtualization repos
[Sandro Bonazzola] mirrors: drop gluster 5 mirroring
Changes for Build #395
[Galit Rosenthal] Fix the repo for suites that weren't moved to no reposync
Changes for Build #396
[Galit Rosenthal] Fix the repo for suites that weren't moved to no reposync
[Shlomi] Added mirror cleanup functionality
[Evgheni Dereveanchin] Modules support for mirror_mgr.sh
Changes for Build #397
[Galit Rosenthal] Fix alosync not recognize returning old 002_bootstrap
[Evgheni Dereveanchin] Define mirrors for CentOS 8
[Evgheni Dereveanchin] fix gpg keys for COPR repos
[Shlomi] Fixed an issue with cleanup of newly created mirrors.
[Ehud Yonasi] ost: add custom repos to test nightly suites.
Changes for Build #398
[Galit Rosenthal] Fix alosync not recognize returning old 002_bootstrap
Changes for Build #399
[Galit Rosenthal] Fix alosync not recognize returning old 002_bootstrap
Changes for Build #400
[Dominik Holler] network: xfailing ovs tests
Changes for Build #401
[Evgheni Dereveanchin] Move from git proto to https
[Evgheni Dereveanchin] add suffix to el8 ppc64le repo names in mock configs
Changes for Build #402
[Michal Skrivanek] minor compatibility and resiliency fixes
[Martin Perina] mock_configs: Enable PG 12 module in EL8 mocks
-----------------
Failed Tests:
-----------------
1 tests failed.
FAILED:
basic-suite-master.test-scenarios.004_basic_sanity_pytest.test_make_snapshot_with_memory
Error Message:
AssertionError: False != True after 600 seconds
Stack Trace:
api_v4 = <ovirtsdk4.Connection object at 0x7f4113589a50>
@pytest.mark.run(order=34)
def test_make_snapshot_with_memory(api_v4):
engine = api_v4.system_service()
vm_service = test_utils.get_vm_service(engine, VM0_NAME)
disks_service = engine.disks_service()
vm_disks_service = \
test_utils.get_disk_attachments_service(engine, VM0_NAME)
vm_disks = [disks_service.disk_service(attachment.disk.id).get()
for attachment in vm_disks_service.list()]
disk_attachments = [types.DiskAttachment(disk=types.Disk(id=disk.id))
for disk in vm_disks
if disk.storage_type != types.DiskStorageType.LUN]
snapshots_service = vm_service.snapshots_service()
snapshot_params = types.Snapshot(
description=SNAPSHOT_DESC_MEM,
persist_memorystate=True,
disk_attachments=disk_attachments
)
with test_utils.TestEvent(engine, 45): # USER_CREATE_SNAPSHOT event
snapshots_service.add(snapshot_params)
../basic-suite-master/test-scenarios/004_basic_sanity_pytest.py:447:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python2.7/contextlib.py:35: in __exit__
self.gen.throw(type, value, traceback)
../compat-4.3-suite-master/test_utils/__init__.py:290: in TestEvent
lambda:
/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 0x7f41105725f0>, 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