From 23aea2b7cc1f3d5a0d06749f973dbc65644b218c Mon Sep 17 00:00:00 2001 From: Michal Rakowski Date: Wed, 24 Jun 2020 14:38:20 +0200 Subject: [PATCH] Test framework update & conftest fixup Signed-off-by: Michal Rakowski --- test/functional/test-framework | 2 +- test/functional/tests/conftest.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/test/functional/test-framework b/test/functional/test-framework index b36c34a..7b8fb2b 160000 --- a/test/functional/test-framework +++ b/test/functional/test-framework @@ -1 +1 @@ -Subproject commit b36c34a2feca33556c6b871b9d99bde6fb0390a1 +Subproject commit 7b8fb2ba6a3a1a293152f0dfef6568e103c86be4 diff --git a/test/functional/tests/conftest.py b/test/functional/tests/conftest.py index df53680..3124462 100644 --- a/test/functional/tests/conftest.py +++ b/test/functional/tests/conftest.py @@ -169,8 +169,7 @@ def base_prepare(item): for disk in TestRun.dut.disks: disk.umount_all_partitions() - if not create_partition_table(disk, PartitionTable.gpt): - raise Exception(f"Failed to remove partitions from {disk}") + create_partition_table(disk, PartitionTable.gpt) if get_force_param(item) and not TestRun.usr.already_updated: installer.rsync_opencas_sources()