Lucas Dupin | 46363d4d | 2019-11-25 12:46:38 -0800 | [diff] [blame] | 1 | { |
Sam Dubey | c0a8e3a | 2023-05-30 15:08:55 +0000 | [diff] [blame] | 2 | // Curious where your @Scenario tests will run? |
| 3 | // |
| 4 | // @Ignore: Will not run in any configuration |
| 5 | // |
| 6 | // @FlakyTest: Tests that don't block pre/postsubmit but are staged to run known failures |
| 7 | // |
| 8 | // @Postsubmit: Runs in platinum suite and blocks droidfood in postsubmit |
| 9 | // |
| 10 | // @PlatinumTest: As of May, 2023, running in postsubmit. Set to run in presubmit as part of |
| 11 | // v2/android-platinum/suite-test-mapping-platinum-sysui |
| 12 | // Please DO NOT annotate new or old tests with @PlatinumTest annotation without discussing |
| 13 | // with mdb:android-platinum |
| 14 | // |
| 15 | // As of May, 2023, If you don't use @Postsubmit, your new test will immediately |
| 16 | // block presubmit, which is probably NOT what you want. This will change effectively once |
| 17 | // we move to @PlatinumTest annotation. |
| 18 | |
| 19 | // v2/sysui/test-mapping-presubmit-sysui_cloud-tf |
vadimt | a195fd0 | 2022-06-14 13:47:51 -0700 | [diff] [blame] | 20 | "presubmit-sysui": [ |
| 21 | { |
| 22 | "name": "PlatformScenarioTests", |
| 23 | "options": [ |
| 24 | { |
| 25 | "include-filter": "android.platform.test.scenario.sysui" |
| 26 | }, |
| 27 | { |
| 28 | "include-annotation": "android.platform.test.scenario.annotation.Scenario" |
| 29 | }, |
| 30 | { |
| 31 | "exclude-annotation": "org.junit.Ignore" |
| 32 | }, |
| 33 | { |
| 34 | "exclude-annotation": "android.platform.test.annotations.Postsubmit" |
Sam Dubey | fb754d4 | 2023-01-19 12:33:22 +0000 | [diff] [blame] | 35 | }, |
| 36 | { |
| 37 | "exclude-annotation": "android.platform.test.annotations.FlakyTest" |
David Saff | f37bab5 | 2023-07-10 14:37:57 -0400 | [diff] [blame] | 38 | }, |
| 39 | { |
| 40 | "exclude-annotation": "androidx.test.filters.FlakyTest" |
vadimt | a195fd0 | 2022-06-14 13:47:51 -0700 | [diff] [blame] | 41 | } |
| 42 | ] |
| 43 | } |
| 44 | ], |
Sam Dubey | c0a8e3a | 2023-05-30 15:08:55 +0000 | [diff] [blame] | 45 | // v2/android-virtual-infra/test_mapping/presubmit-avd |
vadimt | 8c1af8c | 2022-02-01 13:43:14 -0800 | [diff] [blame] | 46 | "presubmit": [ |
Fabian Kozynski | d3e874b | 2021-04-05 15:29:59 -0400 | [diff] [blame] | 47 | { |
Fabian Kozynski | 001e28c | 2021-08-13 11:09:09 -0400 | [diff] [blame] | 48 | "name": "SystemUIGoogleTests", |
| 49 | "options": [ |
| 50 | { |
| 51 | "exclude-annotation": "org.junit.Ignore" |
| 52 | }, |
| 53 | { |
| 54 | "exclude-annotation": "androidx.test.filters.FlakyTest" |
| 55 | } |
| 56 | ] |
| 57 | }, |
Ale Nijamkin | f48b8c3 | 2023-01-08 00:30:46 +0000 | [diff] [blame] | 58 | { |
Chris Göllner | 5267a04 | 2023-07-20 13:33:28 +0000 | [diff] [blame] | 59 | "name": "SystemUIGoogleScreenshotTests", |
| 60 | "options": [ |
| 61 | { |
| 62 | "exclude-annotation": "org.junit.Ignore" |
| 63 | }, |
| 64 | { |
| 65 | "exclude-annotation": "androidx.test.filters.FlakyTest" |
| 66 | }, |
| 67 | { |
| 68 | "exclude-annotation": "android.platform.test.annotations.Postsubmit" |
| 69 | } |
| 70 | ] |
| 71 | }, |
| 72 | { |
Ale Nijamkin | f48b8c3 | 2023-01-08 00:30:46 +0000 | [diff] [blame] | 73 | // TODO(b/251476085): Consider merging with SystemUIGoogleScreenshotTests (in U+) |
| 74 | "name": "SystemUIGoogleBiometricsScreenshotTests", |
| 75 | "options": [ |
| 76 | { |
| 77 | "exclude-annotation": "org.junit.Ignore" |
| 78 | }, |
| 79 | { |
| 80 | "exclude-annotation": "androidx.test.filters.FlakyTest" |
| 81 | } |
| 82 | ] |
| 83 | }, |
Joe Bolinger | 3ca32118 | 2022-12-10 02:02:12 +0000 | [diff] [blame] | 84 | { |
Fabian Kozynski | d3e874b | 2021-04-05 15:29:59 -0400 | [diff] [blame] | 85 | // Permission indicators |
Nate Myren | d079231 | 2023-05-30 14:22:41 -0700 | [diff] [blame] | 86 | "name": "CtsPermissionUiTestCases", |
Fabian Kozynski | d3e874b | 2021-04-05 15:29:59 -0400 | [diff] [blame] | 87 | "options": [ |
| 88 | { |
| 89 | "exclude-annotation": "org.junit.Ignore" |
| 90 | }, |
| 91 | { |
Jay Thomas Sullivan | 86d4819 | 2023-07-17 23:17:38 -0700 | [diff] [blame] | 92 | "exclude-annotation": "android.platform.test.annotations.FlakyTest" |
Nate Myren | 1db39b6 | 2023-01-31 15:04:22 -0800 | [diff] [blame] | 93 | }, |
| 94 | { |
Nate Myren | d079231 | 2023-05-30 14:22:41 -0700 | [diff] [blame] | 95 | "include-filter": "android.permissionui.cts.CameraMicIndicatorsPermissionTest" |
Fabian Kozynski | d3e874b | 2021-04-05 15:29:59 -0400 | [diff] [blame] | 96 | } |
| 97 | ] |
| 98 | }, |
| 99 | { |
| 100 | // Permission indicators |
| 101 | "name": "CtsVoiceRecognitionTestCases", |
| 102 | "options": [ |
| 103 | { |
| 104 | "exclude-annotation": "org.junit.Ignore" |
| 105 | }, |
| 106 | { |
| 107 | "exclude-annotation": "androidx.test.filters.FlakyTest" |
| 108 | } |
| 109 | ] |
Lucas Dupin | 46363d4d | 2019-11-25 12:46:38 -0800 | [diff] [blame] | 110 | } |
Lucas Dupin | e5dc1d9 | 2020-01-27 15:02:59 -0800 | [diff] [blame] | 111 | ], |
Jun | 485caff | 2020-02-27 14:38:28 -0800 | [diff] [blame] | 112 | "auto-end-to-end-postsubmit": [ |
| 113 | { |
Jun | 0105305 | 2021-10-07 17:03:30 -0700 | [diff] [blame] | 114 | "name": "AndroidAutomotiveHomeTests", |
Jun | 485caff | 2020-02-27 14:38:28 -0800 | [diff] [blame] | 115 | "options" : [ |
| 116 | { |
Jun | 0105305 | 2021-10-07 17:03:30 -0700 | [diff] [blame] | 117 | "include-filter": "android.platform.tests.HomeTest" |
| 118 | } |
| 119 | ] |
| 120 | }, |
| 121 | { |
| 122 | "name": "AndroidAutomotiveNotificationsTests", |
| 123 | "options" : [ |
Jun | 485caff | 2020-02-27 14:38:28 -0800 | [diff] [blame] | 124 | { |
Jun | 0105305 | 2021-10-07 17:03:30 -0700 | [diff] [blame] | 125 | "include-filter": "android.platform.tests.NotificationTest" |
Jun | 485caff | 2020-02-27 14:38:28 -0800 | [diff] [blame] | 126 | } |
| 127 | ] |
| 128 | } |
Sam Dubey | c0a8e3a | 2023-05-30 15:08:55 +0000 | [diff] [blame] | 129 | ], |
Jay Thomas Sullivan | 86d4819 | 2023-07-17 23:17:38 -0700 | [diff] [blame] | 130 | "postsubmit": [ |
| 131 | { |
| 132 | // Permission indicators |
| 133 | "name": "CtsPermissionUiTestCases", |
| 134 | "options": [ |
| 135 | { |
| 136 | "include-filter": "android.permissionui.cts.CameraMicIndicatorsPermissionTest" |
| 137 | } |
| 138 | ] |
| 139 | } |
| 140 | ], |
Sam Dubey | c0a8e3a | 2023-05-30 15:08:55 +0000 | [diff] [blame] | 141 | "silver-sysui": [ |
| 142 | { |
| 143 | "name": "PlatformScenarioTests", |
| 144 | "options": [ |
| 145 | { |
| 146 | "include-filter": "android.platform.test.scenario.sysui" |
| 147 | }, |
| 148 | { |
| 149 | "include-annotation": "android.platform.test.scenario.annotation.Scenario" |
| 150 | }, |
| 151 | { |
| 152 | "exclude-annotation": "org.junit.Ignore" |
| 153 | }, |
| 154 | { |
| 155 | "exclude-annotation": "android.platform.test.annotations.PlatinumTest" |
| 156 | }, |
| 157 | { |
| 158 | "exclude-annotation": "android.platform.test.annotations.FlakyTest" |
David Saff | f37bab5 | 2023-07-10 14:37:57 -0400 | [diff] [blame] | 159 | }, |
| 160 | { |
| 161 | "exclude-annotation": "androidx.test.filters.FlakyTest" |
Sam Dubey | c0a8e3a | 2023-05-30 15:08:55 +0000 | [diff] [blame] | 162 | } |
| 163 | ] |
| 164 | } |
Chris Göllner | 5267a04 | 2023-07-20 13:33:28 +0000 | [diff] [blame] | 165 | ], |
| 166 | "postsubmit": [ |
| 167 | { |
| 168 | "name": "SystemUIGoogleScreenshotTests", |
| 169 | "options": [ |
| 170 | { |
| 171 | "exclude-annotation": "org.junit.Ignore" |
| 172 | }, |
| 173 | { |
| 174 | "exclude-annotation": "android.platform.test.annotations.FlakyTest" |
| 175 | }, |
| 176 | { |
| 177 | "include-annotation": "android.platform.test.annotations.Postsubmit" |
| 178 | } |
| 179 | ] |
| 180 | } |
Lucas Dupin | 46363d4d | 2019-11-25 12:46:38 -0800 | [diff] [blame] | 181 | ] |
| 182 | } |