1{ 2 // Looking for unit test presubmit configuration? 3 // This currently lives in ATP config apct/system_ui/unit_test 4 "staged-platinum-postsubmit": [ 5 { 6 "name": "PlatformScenarioTests", 7 "options": [ 8 { 9 "include-filter": "android.platform.test.scenario.sysui" 10 }, 11 { 12 "include-annotation": "android.platform.test.scenario.annotation.Scenario" 13 }, 14 { 15 "exclude-annotation": "org.junit.Ignore" 16 }, 17 { 18 "exclude-annotation": "androidx.test.filters.FlakyTest" 19 } 20 ] 21 } 22 ], 23 "platinum-postsubmit": [ 24 { 25 "name": "PlatformScenarioTests", 26 "options": [ 27 { 28 "include-filter": "android.platform.test.scenario.sysui" 29 }, 30 { 31 "include-annotation": "android.platform.test.scenario.annotation.Scenario" 32 }, 33 { 34 "exclude-annotation": "org.junit.Ignore" 35 }, 36 { 37 "exclude-annotation": "androidx.test.filters.FlakyTest" 38 }, 39 { 40 "exclude-annotation": "android.platform.helpers.Staging" 41 } 42 ] 43 } 44 ] 45} 46