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" |
vadimt | a195fd0 | 2022-06-14 13:47:51 -0700 | [diff] [blame] | 38 | } |
| 39 | ] |
| 40 | } |
| 41 | ], |
Sam Dubey | c0a8e3a | 2023-05-30 15:08:55 +0000 | [diff] [blame^] | 42 | // v2/android-virtual-infra/test_mapping/presubmit-avd |
vadimt | 8c1af8c | 2022-02-01 13:43:14 -0800 | [diff] [blame] | 43 | "presubmit": [ |
Fabian Kozynski | d3e874b | 2021-04-05 15:29:59 -0400 | [diff] [blame] | 44 | { |
Fabian Kozynski | 001e28c | 2021-08-13 11:09:09 -0400 | [diff] [blame] | 45 | "name": "SystemUIGoogleTests", |
| 46 | "options": [ |
| 47 | { |
| 48 | "exclude-annotation": "org.junit.Ignore" |
| 49 | }, |
| 50 | { |
| 51 | "exclude-annotation": "androidx.test.filters.FlakyTest" |
| 52 | } |
| 53 | ] |
| 54 | }, |
Ale Nijamkin | f48b8c3 | 2023-01-08 00:30:46 +0000 | [diff] [blame] | 55 | { |
| 56 | // TODO(b/251476085): Consider merging with SystemUIGoogleScreenshotTests (in U+) |
| 57 | "name": "SystemUIGoogleBiometricsScreenshotTests", |
| 58 | "options": [ |
| 59 | { |
| 60 | "exclude-annotation": "org.junit.Ignore" |
| 61 | }, |
| 62 | { |
| 63 | "exclude-annotation": "androidx.test.filters.FlakyTest" |
| 64 | } |
| 65 | ] |
| 66 | }, |
Joe Bolinger | 3ca32118 | 2022-12-10 02:02:12 +0000 | [diff] [blame] | 67 | { |
Fabian Kozynski | d3e874b | 2021-04-05 15:29:59 -0400 | [diff] [blame] | 68 | // Permission indicators |
Nate Myren | 1db39b6 | 2023-01-31 15:04:22 -0800 | [diff] [blame] | 69 | "name": "CtsPermission3TestCases", |
Fabian Kozynski | d3e874b | 2021-04-05 15:29:59 -0400 | [diff] [blame] | 70 | "options": [ |
| 71 | { |
| 72 | "exclude-annotation": "org.junit.Ignore" |
| 73 | }, |
| 74 | { |
| 75 | "exclude-annotation": "androidx.test.filters.FlakyTest" |
Nate Myren | 1db39b6 | 2023-01-31 15:04:22 -0800 | [diff] [blame] | 76 | }, |
| 77 | { |
| 78 | "include-filter": "android.permission3.cts.CameraMicIndicatorsPermissionTest" |
Fabian Kozynski | d3e874b | 2021-04-05 15:29:59 -0400 | [diff] [blame] | 79 | } |
| 80 | ] |
| 81 | }, |
| 82 | { |
| 83 | // Permission indicators |
| 84 | "name": "CtsVoiceRecognitionTestCases", |
| 85 | "options": [ |
| 86 | { |
| 87 | "exclude-annotation": "org.junit.Ignore" |
| 88 | }, |
| 89 | { |
| 90 | "exclude-annotation": "androidx.test.filters.FlakyTest" |
| 91 | } |
| 92 | ] |
Lucas Dupin | 46363d4d | 2019-11-25 12:46:38 -0800 | [diff] [blame] | 93 | } |
Lucas Dupin | e5dc1d9 | 2020-01-27 15:02:59 -0800 | [diff] [blame] | 94 | ], |
Jun | 485caff | 2020-02-27 14:38:28 -0800 | [diff] [blame] | 95 | "auto-end-to-end-postsubmit": [ |
| 96 | { |
Jun | 0105305 | 2021-10-07 17:03:30 -0700 | [diff] [blame] | 97 | "name": "AndroidAutomotiveHomeTests", |
Jun | 485caff | 2020-02-27 14:38:28 -0800 | [diff] [blame] | 98 | "options" : [ |
| 99 | { |
Jun | 0105305 | 2021-10-07 17:03:30 -0700 | [diff] [blame] | 100 | "include-filter": "android.platform.tests.HomeTest" |
| 101 | } |
| 102 | ] |
| 103 | }, |
| 104 | { |
| 105 | "name": "AndroidAutomotiveNotificationsTests", |
| 106 | "options" : [ |
Jun | 485caff | 2020-02-27 14:38:28 -0800 | [diff] [blame] | 107 | { |
Jun | 0105305 | 2021-10-07 17:03:30 -0700 | [diff] [blame] | 108 | "include-filter": "android.platform.tests.NotificationTest" |
Jun | 485caff | 2020-02-27 14:38:28 -0800 | [diff] [blame] | 109 | } |
| 110 | ] |
| 111 | } |
Sam Dubey | c0a8e3a | 2023-05-30 15:08:55 +0000 | [diff] [blame^] | 112 | ], |
| 113 | "silver-sysui": [ |
| 114 | { |
| 115 | "name": "PlatformScenarioTests", |
| 116 | "options": [ |
| 117 | { |
| 118 | "include-filter": "android.platform.test.scenario.sysui" |
| 119 | }, |
| 120 | { |
| 121 | "include-annotation": "android.platform.test.scenario.annotation.Scenario" |
| 122 | }, |
| 123 | { |
| 124 | "exclude-annotation": "org.junit.Ignore" |
| 125 | }, |
| 126 | { |
| 127 | "exclude-annotation": "android.platform.test.annotations.PlatinumTest" |
| 128 | }, |
| 129 | { |
| 130 | "exclude-annotation": "android.platform.test.annotations.FlakyTest" |
| 131 | } |
| 132 | ] |
| 133 | } |
Lucas Dupin | 46363d4d | 2019-11-25 12:46:38 -0800 | [diff] [blame] | 134 | ] |
| 135 | } |