From be288d2fac9c27d9871ec7dbe3076082d97a9de4 Mon Sep 17 00:00:00 2001 From: Katarzyna Lapinska Date: Wed, 17 Jun 2020 09:00:05 +0200 Subject: [PATCH] Kill existing fsck process to be able to manage partitions in test prepare Signed-off-by: Katarzyna Lapinska --- test/functional/tests/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/tests/conftest.py b/test/functional/tests/conftest.py index 526c976..df53680 100644 --- a/test/functional/tests/conftest.py +++ b/test/functional/tests/conftest.py @@ -152,6 +152,7 @@ def get_force_param(item): def base_prepare(item): with TestRun.LOGGER.step("Cleanup before test"): + TestRun.executor.run("pkill --signal=SIGKILL fsck") Udev.enable() kill_all_io() DeviceMapper.remove_all()