File tree Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,24 @@ steps:
21
21
agents :
22
22
queue : " mac-metal"
23
23
24
- - label : " Instrumented tests (ReviewsUITest)"
24
+ - label : " Instrumented tests without GMD (ReviewsUITest)"
25
25
command : |
26
26
echo "--- 🧪 Testing"
27
27
./gradlew :WooCommerce:connectedVanillaDebugAndroidTest -Pandroid.testInstrumentationRunnerArguments.class=com.woocommerce.android.e2e.tests.ui.ReviewsUITest
28
28
plugins : [ $CI_TOOLKIT ]
29
29
artifact_paths :
30
- - " **/build/reports/androidTests/**/**/**/**/**/*"
30
+ - " **/build/reports/androidTests/connected/**/**/**/*"
31
+ - " **/build/reports/androidTests/connected/**/**/**/**/*"
32
+ agents :
33
+ queue : " mac-metal"
34
+
35
+ - label : " Instrumented tests with GMD (ReviewsUITest)"
36
+ command : |
37
+ echo "--- 🧪 Testing"
38
+ ./gradlew :WooCommerce:pixel5api34VanillaDebugAndroidTest -Pandroid.testInstrumentationRunnerArguments.class=com.woocommerce.android.e2e.tests.ui.ReviewsUITest
39
+ plugins : [ $CI_TOOLKIT ]
40
+ artifact_paths :
41
+ - " **/build/reports/androidTests/managedDevice/**/**/**/pixel5api34/*"
42
+ - " **/build/reports/androidTests/managedDevice/**/**/**/pixel5api34/**/*"
31
43
agents :
32
44
queue : " mac-metal"
Original file line number Diff line number Diff line change @@ -175,6 +175,15 @@ android {
175
175
testOptions {
176
176
animationsDisabled = true
177
177
execution ' ANDROIDX_TEST_ORCHESTRATOR'
178
+ managedDevices {
179
+ localDevices {
180
+ pixel5api34 {
181
+ device = " Pixel 5"
182
+ apiLevel = 34
183
+ systemImageSource = " google"
184
+ }
185
+ }
186
+ }
178
187
}
179
188
180
189
signingConfigs {
You can’t perform that action at this time.
0 commit comments