diff options
| author | 2023-11-08 00:34:45 +0000 | |
|---|---|---|
| committer | 2023-11-08 00:34:45 +0000 | |
| commit | a071bbd8231c9f241e76b4052f2d491dfdf470ca (patch) | |
| tree | 338139f061775ba753bd8f0cbe7f7141b83bfc5f | |
| parent | 66f6728ea8d645a07ba2a4ba1e209f700961abd0 (diff) | |
| parent | 0b9bff2b72632d16cc06eacb7a33b06610851d6b (diff) | |
Merge "fix(a11y tests): ignore tests marked @FlakyTest, @Ignore, @Postsubmit, etc" into main
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/accessibility/TEST_MAPPING | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/accessibility/TEST_MAPPING b/packages/SystemUI/src/com/android/systemui/accessibility/TEST_MAPPING index 055fad1d0d66..be26b43d2599 100644 --- a/packages/SystemUI/src/com/android/systemui/accessibility/TEST_MAPPING +++ b/packages/SystemUI/src/com/android/systemui/accessibility/TEST_MAPPING @@ -5,6 +5,18 @@ "options": [ { "include-filter": "com.android.systemui.accessibility" + }, + { + "exclude-annotation": "org.junit.Ignore" + }, + { + "exclude-annotation": "android.platform.test.annotations.Postsubmit" + }, + { + "exclude-annotation": "android.platform.test.annotations.FlakyTest" + }, + { + "exclude-annotation": "androidx.test.filters.FlakyTest" } ] } |