From 79e54b81a69e146ffbf9cb3ba3d62a5d8ed04d59 Mon Sep 17 00:00:00 2001 From: Jan Musial Date: Tue, 17 Dec 2019 11:00:58 +0100 Subject: [PATCH] Kill all IO on teardown Signed-off-by: Jan Musial --- 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 3390636..7c66a8c 100644 --- a/test/functional/tests/conftest.py +++ b/test/functional/tests/conftest.py @@ -93,6 +93,7 @@ def pytest_runtest_teardown(): if TestRun.executor.is_active(): TestRun.executor.wait_for_connection() Udev.enable() + kill_all_io() unmount_cas_devices() casadm.remove_all_detached_cores() casadm.stop_all_caches()