diff --git a/test/functional/tests/fault_injection/test_fault_injection_standby.py b/test/functional/tests/fault_injection/test_fault_injection_standby.py index b7fadd2..53bf942 100644 --- a/test/functional/tests/fault_injection/test_fault_injection_standby.py +++ b/test/functional/tests/fault_injection/test_fault_injection_standby.py @@ -27,6 +27,7 @@ block_size = Size(1, Unit.Blocks512) offset = 1 # offset is expressed in the number of blocks +@pytest.mark.CI @pytest.mark.require_disk("cache", DiskTypeSet([DiskType.nand, DiskType.optane])) @pytest.mark.require_disk("core", DiskTypeLowerThan("cache")) def test_activate_corrupted(): @@ -83,6 +84,7 @@ def test_activate_corrupted(): md_dump.remove() +@pytest.mark.CI @pytest.mark.require_disk("cache", DiskTypeSet([DiskType.nand, DiskType.optane])) @pytest.mark.require_disk("core", DiskTypeLowerThan("cache")) def test_load_corrupted(): @@ -127,6 +129,7 @@ def test_load_corrupted(): md_dump.remove() +@pytest.mark.CI @pytest.mark.require_disk("cache", DiskTypeSet([DiskType.nand, DiskType.optane])) @pytest.mark.require_disk("core", DiskTypeLowerThan("cache")) def test_activate_corrupted_after_dump():