We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0fe6437 + 379a9a3 commit 13e41ceCopy full SHA for 13e41ce
vendor/vendor-android/src/main/kotlin/com/malinskiy/marathon/android/adam/AmInstrumentTestParser.kt
@@ -138,10 +138,14 @@ class AmInstrumentTestParser(
138
}
139
140
141
- is TestRunFailed -> Unit
+ is TestRunFailed -> {
142
+ //Happens on Android Wear if classpath is misconfigured
143
+ if (event.error.contains("Process crashed")) {
144
+ throw TestAnnotationProducerNotFoundException()
145
+ }
146
147
is TestRunStopped -> Unit
148
is TestRunEnded -> Unit
-
149
150
151
0 commit comments