From 5dfe5aa611d2ba6aa4b6711f5d42a21a26c5ef0f Mon Sep 17 00:00:00 2001 From: Piotr Debski Date: Wed, 20 Jul 2022 11:26:26 +0200 Subject: [PATCH] Add CI marks to standby fault injection tests Signed-off-by: Piotr Debski --- .../tests/fault_injection/test_fault_injection_standby.py | 3 +++ 1 file changed, 3 insertions(+) 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 e83e185..bfe643d 100644 --- a/test/functional/tests/fault_injection/test_fault_injection_standby.py +++ b/test/functional/tests/fault_injection/test_fault_injection_standby.py @@ -25,6 +25,7 @@ from test_utils.filesystem.file import File block_size = Size(1, Unit.Blocks512) +@pytest.mark.CI @pytest.mark.require_disk("cache", DiskTypeSet([DiskType.nand, DiskType.optane])) @pytest.mark.require_disk("core", DiskTypeLowerThan("cache")) def test_activate_corrupted(): @@ -81,6 +82,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(): @@ -125,6 +127,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():