1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
# List of tests to be skipped
#
# Example:
# This will skip the 'test_mount_ntfs' test case on Debian 10
# and on all 32bit machines
#
###################################
# - test: fs_test.MountTest.test_mount_ntfs
# skip_on:
# - distro: "debian"
# version: "10"
# reason: "NTFS mounting is broken on Debian testing"
#
# - arch: "i686"
# reason: "testing skipping from config file"
###################################
#
# Notes:
# - multiple combinations of reasons are supported.
# - 'reason' and at least one of 'distro', 'version' and 'arch' is required
# - 'test' (ID of the test case) can be specified as a regular expression
# for example 'mpath_test.MpathUnloadTest.*' to skip all mpath unload tests
# - all "skips" can specified as a list, for example 'version: [10, 11]'
---
- test: smartmontools_test.SmartmontoolsTest.*
skip_on:
- distro: "debian"
reason: "smartmontools support is disabled on Debian"
- test: mdraid_test.MDTestAddRemove.test_add_remove
skip_on:
- distro: "debian"
reason: "Removing spare disks from an array is broken on Debian"
- test: nvdimm_test.NVDIMMNoDevTest.test_supported_sector_sizes
skip_on:
- arch: "i686"
reason: "Lists of 64bit integers are broken on i686 with GI"
- test: fs_tests.mount_test.MountTestCase.test_mount_ntfs
skip_on:
- distro: "debian"
reason: "mount.ntfs-3g randomly hangs on Debian testing"
- test: lvm_dbus_tests.LvmTestLVsnapshots.test_snapshotcreate_lvorigin_snapshotmerge
skip_on:
- distro: "centos"
version: "9"
reason: "snapshot merge doesn't work on CentOS 9 Stream with LVM DBus API"
- test: (lvm_test|lvm_dbus_tests).LvmPVVGLVWritecacheAttachDetachTestCase
skip_on:
- arch: "i686"
reason: "Cache attach/detach fails with ENOMEM on 32bit systems"
- test: (lvm_test|lvm_dbus_tests).LVMVDOTest
skip_on:
- distro: "debian"
arch: "i686"
reason: "vdo userspace tools are not available on 32bit Debian"
- test: lvm_dbus_tests.LvmTestPartialLVs
skip_on:
- reason: "LVM DBus doesn't support LV repair yet"
- test: (lvm_test|lvm_dbus_tests).LvmNoDevTestCase.test_lvm_config
skip_on:
- distro: "debian"
version: "12"
reason: "LVM >= 2.03.17 needed for LVM config parsing with --valuesonly"
|