1{
2  "presubmit-large": [
3    {
4      "name": "CtsHostsideNetworkTests",
5      "options": [
6        {
7          "exclude-annotation": "androidx.test.filters.FlakyTest"
8        },
9        {
10          "exclude-annotation": "android.platform.test.annotations.FlakyTest"
11        },
12        {
13          "exclude-annotation": "android.platform.test.annotations.RequiresDevice"
14        },
15        {
16          "exclude-annotation": "com.android.testutils.SkipPresubmit"
17        }
18      ]
19    }
20  ],
21  "postsubmit": [
22    {
23      // Postsubmit on virtual devices to monitor flakiness of @SkipPresubmit methods
24      "name": "CtsHostsideNetworkTests",
25      "options": [
26        {
27          "exclude-annotation": "androidx.test.filters.RequiresDevice"
28        }
29      ]
30    }
31  ]
32}
33