forked from storaged-project/blivet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskip.yml
31 lines (29 loc) · 977 Bytes
/
skip.yml
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
# 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 'kbd_test.KbdBcacheTestCase.*' to skip all kbd tests
# - all "skips" can specified as a list, for example 'version: [10, 11]'
---
- test: storage_tests.devices_test.md_test.MDTestCase
skip_on:
- distro: "centos"
version: "9"
reason: "MD tests are randomly failing on RHEL/CentOS 9"